mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
57 lines
1.4 KiB
TypeScript
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'
|
|
}
|
|
}
|