conekta
Version:
OpenAPI client for conekta
73 lines (68 loc) • 1.55 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* Conekta API
* Conekta sdk
*
* The version of the OpenAPI document: 2.2.0
* Contact: engineering@conekta.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface PayoutOrderPayoutsItem
*/
export interface PayoutOrderPayoutsItem {
/**
* The amount of the payout.
* @type {number}
* @memberof PayoutOrderPayoutsItem
*/
'amount': number;
/**
* The currency in which the payout is made.
* @type {string}
* @memberof PayoutOrderPayoutsItem
*/
'currency': string;
/**
* The expiration date of the payout.
* @type {number}
* @memberof PayoutOrderPayoutsItem
*/
'expires_at'?: number;
/**
* The id of the payout.
* @type {string}
* @memberof PayoutOrderPayoutsItem
*/
'id': string;
/**
* The live mode of the payout.
* @type {boolean}
* @memberof PayoutOrderPayoutsItem
*/
'livemode': boolean;
/**
* The object of the payout.
* @type {string}
* @memberof PayoutOrderPayoutsItem
*/
'object': string;
/**
* The id of the payout order.
* @type {string}
* @memberof PayoutOrderPayoutsItem
*/
'payout_order_id'?: string;
/**
* The status of the payout.
* @type {string}
* @memberof PayoutOrderPayoutsItem
*/
'status'?: string;
}