@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
135 lines • 5.18 kB
JavaScript
;
/*
* ######
* ######
* ############ ####( ###### #####. ###### ############ ############
* ############# #####( ###### #####. ###### ############# #############
* ###### #####( ###### #####. ###### ##### ###### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ######
* ############# ############# ############# ############# ##### ######
* ############ ############ ############# ############ ##### ######
* ######
* #############
* ############
* Adyen NodeJS API Library
* Copyright (c) 2021 Adyen B.V.
* This file is open source and available under the MIT license.
* See the LICENSE file for more info.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.OutputText = void 0;
/**
* 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
* Do not edit the class manually.
*/
class OutputText {
static getAttributeTypeMap() {
return OutputText.attributeTypeMap;
}
}
exports.OutputText = OutputText;
OutputText.discriminator = undefined;
OutputText.attributeTypeMap = [
{
"name": "Alignment",
"baseName": "Alignment",
"type": "OutputText.AlignmentEnum"
},
{
"name": "CharacterHeight",
"baseName": "CharacterHeight",
"type": "OutputText.CharacterHeightEnum"
},
{
"name": "CharacterSet",
"baseName": "CharacterSet",
"type": "number"
},
{
"name": "CharacterStyle",
"baseName": "CharacterStyle",
"type": "OutputText.CharacterStyleEnum"
},
{
"name": "CharacterWidth",
"baseName": "CharacterWidth",
"type": "OutputText.CharacterWidthEnum"
},
{
"name": "Color",
"baseName": "Color",
"type": "OutputText.ColorEnum"
},
{
"name": "EndOfLineFlag",
"baseName": "EndOfLineFlag",
"type": "boolean"
},
{
"name": "Font",
"baseName": "Font",
"type": "string"
},
{
"name": "StartColumn",
"baseName": "StartColumn",
"type": "number"
},
{
"name": "StartRow",
"baseName": "StartRow",
"type": "number"
},
{
"name": "Text",
"baseName": "Text",
"type": "string"
}
];
(function (OutputText) {
let AlignmentEnum;
(function (AlignmentEnum) {
AlignmentEnum[AlignmentEnum["Centred"] = 'Centred'] = "Centred";
AlignmentEnum[AlignmentEnum["Justified"] = 'Justified'] = "Justified";
AlignmentEnum[AlignmentEnum["Left"] = 'Left'] = "Left";
AlignmentEnum[AlignmentEnum["Right"] = 'Right'] = "Right";
})(AlignmentEnum = OutputText.AlignmentEnum || (OutputText.AlignmentEnum = {}));
let CharacterHeightEnum;
(function (CharacterHeightEnum) {
CharacterHeightEnum[CharacterHeightEnum["DoubleHeight"] = 'DoubleHeight'] = "DoubleHeight";
CharacterHeightEnum[CharacterHeightEnum["HalfHeight"] = 'HalfHeight'] = "HalfHeight";
CharacterHeightEnum[CharacterHeightEnum["SingleHeight"] = 'SingleHeight'] = "SingleHeight";
})(CharacterHeightEnum = OutputText.CharacterHeightEnum || (OutputText.CharacterHeightEnum = {}));
let CharacterStyleEnum;
(function (CharacterStyleEnum) {
CharacterStyleEnum[CharacterStyleEnum["Bold"] = 'Bold'] = "Bold";
CharacterStyleEnum[CharacterStyleEnum["Italic"] = 'Italic'] = "Italic";
CharacterStyleEnum[CharacterStyleEnum["Normal"] = 'Normal'] = "Normal";
CharacterStyleEnum[CharacterStyleEnum["Underlined"] = 'Underlined'] = "Underlined";
})(CharacterStyleEnum = OutputText.CharacterStyleEnum || (OutputText.CharacterStyleEnum = {}));
let CharacterWidthEnum;
(function (CharacterWidthEnum) {
CharacterWidthEnum[CharacterWidthEnum["DoubleWidth"] = 'DoubleWidth'] = "DoubleWidth";
CharacterWidthEnum[CharacterWidthEnum["SingleWidth"] = 'SingleWidth'] = "SingleWidth";
})(CharacterWidthEnum = OutputText.CharacterWidthEnum || (OutputText.CharacterWidthEnum = {}));
let ColorEnum;
(function (ColorEnum) {
ColorEnum[ColorEnum["Black"] = 'Black'] = "Black";
ColorEnum[ColorEnum["Blue"] = 'Blue'] = "Blue";
ColorEnum[ColorEnum["Cyan"] = 'Cyan'] = "Cyan";
ColorEnum[ColorEnum["Green"] = 'Green'] = "Green";
ColorEnum[ColorEnum["Magenta"] = 'Magenta'] = "Magenta";
ColorEnum[ColorEnum["Red"] = 'Red'] = "Red";
ColorEnum[ColorEnum["White"] = 'White'] = "White";
ColorEnum[ColorEnum["Yellow"] = 'Yellow'] = "Yellow";
})(ColorEnum = OutputText.ColorEnum || (OutputText.ColorEnum = {}));
})(OutputText = exports.OutputText || (exports.OutputText = {}));
//# sourceMappingURL=outputText.js.map