UNPKG

digitalfemsa

Version:
63 lines (62 loc) 1.96 kB
/** * Femsa API * Femsa sdk * * The version of the OpenAPI document: 2.1.0 * Contact: engineering@femsa.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Company payout destination model * @export * @interface CompanyPayoutDestinationResponse */ export interface CompanyPayoutDestinationResponse { /** * The resource\'s type * @type {string} * @memberof CompanyPayoutDestinationResponse */ 'object'?: CompanyPayoutDestinationResponseObjectEnum; /** * currency of the receiving account * @type {string} * @memberof CompanyPayoutDestinationResponse */ 'currency'?: string; /** * Name of the account holder * @type {string} * @memberof CompanyPayoutDestinationResponse */ 'account_holder_name'?: string; /** * Name of the bank * @type {string} * @memberof CompanyPayoutDestinationResponse */ 'bank'?: string; /** * Type of the payout destination * @type {string} * @memberof CompanyPayoutDestinationResponse */ 'type'?: CompanyPayoutDestinationResponseTypeEnum; /** * Account number of the receiving account * @type {string} * @memberof CompanyPayoutDestinationResponse */ 'account_number'?: string; } export declare const CompanyPayoutDestinationResponseObjectEnum: { readonly payoutDestination: "payout_destination"; }; export type CompanyPayoutDestinationResponseObjectEnum = typeof CompanyPayoutDestinationResponseObjectEnum[keyof typeof CompanyPayoutDestinationResponseObjectEnum]; export declare const CompanyPayoutDestinationResponseTypeEnum: { readonly bankAccount: "bank_account"; }; export type CompanyPayoutDestinationResponseTypeEnum = typeof CompanyPayoutDestinationResponseTypeEnum[keyof typeof CompanyPayoutDestinationResponseTypeEnum];