mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
* add create/disablePermit and simple UT * Add serializer for Date objects and quick test Co-authored-by: Michael Paul <michael@michaelpaul.com.br>
40 lines
978 B
TypeScript
40 lines
978 B
TypeScript
/*
|
|
* The version of the OpenAPI document: v68
|
|
* 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 PermitResult {
|
|
/**
|
|
* The key to link permit requests to permit results.
|
|
*/
|
|
'resultKey'?: string;
|
|
/**
|
|
* The permit token which is used to make payments by the partner company.
|
|
*/
|
|
'token'?: string;
|
|
|
|
static discriminator: string | undefined = undefined;
|
|
|
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
{
|
|
"name": "resultKey",
|
|
"baseName": "resultKey",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "token",
|
|
"baseName": "token",
|
|
"type": "string"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return PermitResult.attributeTypeMap;
|
|
}
|
|
}
|
|
|