Files
adyen-node-api-library/src/typings/checkout/weChatPayMiniProgramDetails.ts
2023-01-19 16:08:59 +00:00

57 lines
1.4 KiB
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 WeChatPayMiniProgramDetails {
'appId'?: string;
/**
* The checkout attempt identifier.
*/
'checkoutAttemptId'?: string;
'openid'?: string;
/**
* **wechatpayMiniProgram**
*/
'type'?: WeChatPayMiniProgramDetails.TypeEnum;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "appId",
"baseName": "appId",
"type": "string"
},
{
"name": "checkoutAttemptId",
"baseName": "checkoutAttemptId",
"type": "string"
},
{
"name": "openid",
"baseName": "openid",
"type": "string"
},
{
"name": "type",
"baseName": "type",
"type": "WeChatPayMiniProgramDetails.TypeEnum"
} ];
static getAttributeTypeMap() {
return WeChatPayMiniProgramDetails.attributeTypeMap;
}
}
export namespace WeChatPayMiniProgramDetails {
export enum TypeEnum {
WechatpayMiniProgram = <any> 'wechatpayMiniProgram'
}
}