digitalfemsa
Version:
OpenAPI client for digitalfemsa
67 lines (66 loc) • 1.56 kB
TypeScript
/**
* 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.
*/
/**
* Method used to make the transfer.
* @export
* @interface TransferMethodResponse
*/
export interface TransferMethodResponse {
/**
* Name of the account holder.
* @type {string}
* @memberof TransferMethodResponse
*/
'account_holder'?: string;
/**
* Account number of the bank account.
* @type {string}
* @memberof TransferMethodResponse
*/
'account_number'?: string;
/**
* Name of the bank.
* @type {string}
* @memberof TransferMethodResponse
*/
'bank'?: string;
/**
* Date and time of creation of the transfer.
* @type {number}
* @memberof TransferMethodResponse
*/
'created_at'?: number;
/**
* Unique identifier of the transfer.
* @type {string}
* @memberof TransferMethodResponse
*/
'id'?: string;
/**
* Object name, which is bank_transfer_payout_method.
* @type {string}
* @memberof TransferMethodResponse
*/
'object'?: string;
/**
* Unique identifier of the payee.
* @type {string}
* @memberof TransferMethodResponse
*/
'payee_id'?: string;
/**
* Type of the payee.
* @type {string}
* @memberof TransferMethodResponse
*/
'type'?: string;
}