From 8aa158b94368ed4e540d5557877466adf436b963 Mon Sep 17 00:00:00 2001 From: Eoin Falconer Date: Fri, 18 Nov 2022 08:47:40 +0100 Subject: [PATCH] Arribatec/fix terminal comms typo (#1029) * Fix the namings of CommunicationOKFlag * Revert "Fix the namings of CommunicationOKFlag" This reverts commit 15e85c2665947a87ce7cfd8b6dae5df0fde16cb1. * Updated with correct linting * Update pOIStatus.ts Co-authored-by: jillingk <93914435+jillingk@users.noreply.github.com> Co-authored-by: Wouter Boereboom <62436079+wboereboom@users.noreply.github.com> --- src/typings/terminal/pOIStatus.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/typings/terminal/pOIStatus.ts b/src/typings/terminal/pOIStatus.ts index b0c1248..487da57 100644 --- a/src/typings/terminal/pOIStatus.ts +++ b/src/typings/terminal/pOIStatus.ts @@ -16,13 +16,13 @@ * This file is open source and available under the MIT license. * See the LICENSE file for more info. */ - + /** * Terminal API * Definition of Terminal API Schema * * The version of the OpenAPI document: 1.0.0 - * + * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech @@ -34,21 +34,21 @@ import { CashHandlingDevice } from './cashHandlingDevice'; import { GlobalStatusType } from './globalStatusType'; export class POIStatus { - 'CardReaderOkFlag'?: boolean; + 'CardReaderOKFlag'?: boolean; 'CashHandlingDevice'?: Array; - 'CommunicationOkFlag'?: boolean; + 'CommunicationOKFlag'?: boolean; 'FraudPreventionFlag'?: boolean; 'GlobalStatus': GlobalStatusType; 'PEDOKFlag'?: boolean; 'PrinterStatus'?: POIStatus.PrinterStatusEnum; - 'SecurityOkFlag'?: boolean; + 'SecurityOKFlag'?: boolean; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { - "name": "CardReaderOkFlag", - "baseName": "CardReaderOkFlag", + "name": "CardReaderOKFlag", + "baseName": "CardReaderOKFlag", "type": "boolean" }, { @@ -57,8 +57,8 @@ export class POIStatus { "type": "Array" }, { - "name": "CommunicationOkFlag", - "baseName": "CommunicationOkFlag", + "name": "CommunicationOKFlag", + "baseName": "CommunicationOKFlag", "type": "boolean" }, { @@ -82,8 +82,8 @@ export class POIStatus { "type": "POIStatus.PrinterStatusEnum" }, { - "name": "SecurityOkFlag", - "baseName": "SecurityOkFlag", + "name": "SecurityOKFlag", + "baseName": "SecurityOKFlag", "type": "boolean" } ];