|
| 1 | +/* |
| 2 | + * The version of the OpenAPI document: v71 |
| 3 | + * |
| 4 | + * |
| 5 | + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). |
| 6 | + * https://openapi-generator.tech |
| 7 | + * Do not edit this class manually. |
| 8 | + */ |
| 9 | + |
| 10 | + |
| 11 | +export class DirectDebitAuDetails { |
| 12 | + /** |
| 13 | + * The shopper\'s banking account number used to complete payment. |
| 14 | + */ |
| 15 | + "bankAccountNumber"?: string; |
| 16 | + /** |
| 17 | + * The shopper\'s BSB (their bank\'s branch code) number used to complete payment. |
| 18 | + */ |
| 19 | + "bankBranchCode"?: string; |
| 20 | + /** |
| 21 | + * The checkout attempt identifier. |
| 22 | + */ |
| 23 | + "checkoutAttemptId"?: string; |
| 24 | + /** |
| 25 | + * This is the `recurringDetailReference` returned in the response when you created the token. |
| 26 | + * |
| 27 | + * @deprecated since Adyen Checkout API v49 |
| 28 | + * Use `storedPaymentMethodId` instead. |
| 29 | + */ |
| 30 | + "recurringDetailReference"?: string; |
| 31 | + /** |
| 32 | + * Base64-encoded JSON object containing SDK related parameters required by the SDK |
| 33 | + */ |
| 34 | + "sdkData"?: string; |
| 35 | + /** |
| 36 | + * This is the `recurringDetailReference` returned in the response when you created the token. |
| 37 | + */ |
| 38 | + "storedPaymentMethodId"?: string; |
| 39 | + /** |
| 40 | + * **directdebit_AU** |
| 41 | + */ |
| 42 | + "type"?: DirectDebitAuDetails.TypeEnum; |
| 43 | + |
| 44 | + static readonly discriminator: string | undefined = undefined; |
| 45 | + |
| 46 | + static readonly mapping: {[index: string]: string} | undefined = undefined; |
| 47 | + |
| 48 | + static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ |
| 49 | + { |
| 50 | + "name": "bankAccountNumber", |
| 51 | + "baseName": "bankAccountNumber", |
| 52 | + "type": "string", |
| 53 | + "format": "" |
| 54 | + }, |
| 55 | + { |
| 56 | + "name": "bankBranchCode", |
| 57 | + "baseName": "bankBranchCode", |
| 58 | + "type": "string", |
| 59 | + "format": "" |
| 60 | + }, |
| 61 | + { |
| 62 | + "name": "checkoutAttemptId", |
| 63 | + "baseName": "checkoutAttemptId", |
| 64 | + "type": "string", |
| 65 | + "format": "" |
| 66 | + }, |
| 67 | + { |
| 68 | + "name": "recurringDetailReference", |
| 69 | + "baseName": "recurringDetailReference", |
| 70 | + "type": "string", |
| 71 | + "format": "" |
| 72 | + }, |
| 73 | + { |
| 74 | + "name": "sdkData", |
| 75 | + "baseName": "sdkData", |
| 76 | + "type": "string", |
| 77 | + "format": "" |
| 78 | + }, |
| 79 | + { |
| 80 | + "name": "storedPaymentMethodId", |
| 81 | + "baseName": "storedPaymentMethodId", |
| 82 | + "type": "string", |
| 83 | + "format": "" |
| 84 | + }, |
| 85 | + { |
| 86 | + "name": "type", |
| 87 | + "baseName": "type", |
| 88 | + "type": "DirectDebitAuDetails.TypeEnum", |
| 89 | + "format": "" |
| 90 | + } ]; |
| 91 | + |
| 92 | + static getAttributeTypeMap() { |
| 93 | + return DirectDebitAuDetails.attributeTypeMap; |
| 94 | + } |
| 95 | + |
| 96 | + public constructor() { |
| 97 | + } |
| 98 | +} |
| 99 | + |
| 100 | +export namespace DirectDebitAuDetails { |
| 101 | + export enum TypeEnum { |
| 102 | + DirectdebitAu = 'directdebit_AU' |
| 103 | + } |
| 104 | +} |
0 commit comments