Changed name of Value to BarcodeValue corresponding to docs(and API) (#1051)

This commit is contained in:
jillingk
2022-11-18 14:50:54 +01:00
committed by GitHub
parent 91306b86d3
commit 791f68163a

View File

@@ -33,7 +33,7 @@
export class OutputBarcode { export class OutputBarcode {
'BarcodeType'?: OutputBarcode.BarcodeTypeEnum; 'BarcodeType'?: OutputBarcode.BarcodeTypeEnum;
'Value'?: string; 'BarcodeValue'?: string;
static discriminator: string | undefined = undefined; static discriminator: string | undefined = undefined;
@@ -44,8 +44,8 @@ export class OutputBarcode {
"type": "OutputBarcode.BarcodeTypeEnum" "type": "OutputBarcode.BarcodeTypeEnum"
}, },
{ {
"name": "Value", "name": "BarcodeValue",
"baseName": "Value", "baseName": "BarcodeValue",
"type": "string" "type": "string"
} ]; } ];