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

31 lines
916 B
TypeScript

/*
* The version of the OpenAPI document: v69
* 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 ApplePaySessionResponse {
/**
* Base64 encoded data you need to [complete the Apple Pay merchant validation](https://docs.adyen.com/payment-methods/apple-pay/api-only?tab=adyen-certificate-validation_1#complete-apple-pay-session-validation).
*/
'data': string;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "data",
"baseName": "data",
"type": "string"
} ];
static getAttributeTypeMap() {
return ApplePaySessionResponse.attributeTypeMap;
}
}