Files
adyen-node-api-library/src/typings/management/terminalActionScheduleDetail.ts
2022-10-28 16:28:50 +02:00

40 lines
986 B
TypeScript

/*
* The version of the OpenAPI document: v1
* Contact: developer-experience@adyen.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit this class manually.
*/
export class TerminalActionScheduleDetail {
/**
* The ID of the action on the specified terminal.
*/
'id'?: string;
/**
* The unique ID of the terminal that the action applies to.
*/
'terminalId'?: string;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "id",
"baseName": "id",
"type": "string"
},
{
"name": "terminalId",
"baseName": "terminalId",
"type": "string"
} ];
static getAttributeTypeMap() {
return TerminalActionScheduleDetail.attributeTypeMap;
}
}