digitalfemsa
Version:
OpenAPI client for digitalfemsa
37 lines (36 loc) • 931 B
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.
*/
/**
* Payment method used in the charge. Go to the [payment methods](https://developers.femsa.com/reference/m%C3%A9todos-de-pago) section for more details
* @export
* @interface ChargeRequestPaymentMethod
*/
export interface ChargeRequestPaymentMethod {
/**
* Method expiration date as unix timestamp
* @type {number}
* @memberof ChargeRequestPaymentMethod
*/
'expires_at'?: number;
/**
*
* @type {string}
* @memberof ChargeRequestPaymentMethod
*/
'type': string;
/**
*
* @type {string}
* @memberof ChargeRequestPaymentMethod
*/
'payment_source_id'?: string;
}