UNPKG

digitalfemsa

Version:
43 lines (38 loc) 980 B
/* tslint:disable */ /* eslint-disable */ /** * 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; }