mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
40 lines
957 B
TypeScript
40 lines
957 B
TypeScript
/*
|
|
* The version of the OpenAPI document: v2
|
|
* 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 TransferInstrumentReference {
|
|
/**
|
|
* Account identifier
|
|
*/
|
|
'accountIdentifier'?: string;
|
|
/**
|
|
* The unique identifier of the resource.
|
|
*/
|
|
'id'?: string;
|
|
|
|
static discriminator: string | undefined = undefined;
|
|
|
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
{
|
|
"name": "accountIdentifier",
|
|
"baseName": "accountIdentifier",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "id",
|
|
"baseName": "id",
|
|
"type": "string"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return TransferInstrumentReference.attributeTypeMap;
|
|
}
|
|
}
|
|
|