UNPKG

conekta

Version:
103 lines (98 loc) 1.77 kB
/* 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. */ /** * plans model * @export * @interface PlanResponse */ export interface PlanResponse { /** * * @type {number} * @memberof PlanResponse */ 'amount'?: number; /** * * @type {number} * @memberof PlanResponse */ 'created_at'?: number; /** * * @type {string} * @memberof PlanResponse */ 'currency'?: string; /** * * @type {number} * @memberof PlanResponse */ 'expiry_count'?: number | null; /** * * @type {number} * @memberof PlanResponse */ 'frequency'?: number; /** * * @type {string} * @memberof PlanResponse */ 'id'?: string; /** * * @type {string} * @memberof PlanResponse */ 'interval'?: string; /** * * @type {boolean} * @memberof PlanResponse */ 'livemode'?: boolean; /** * * @type {string} * @memberof PlanResponse */ 'name'?: string; /** * * @type {string} * @memberof PlanResponse */ 'object'?: string; /** * * @type {number} * @memberof PlanResponse */ 'trial_period_days'?: number | null; /** * * @type {number} * @memberof PlanResponse */ 'max_retries'?: number; /** * * @type {number} * @memberof PlanResponse */ 'retry_delay_hours'?: number; }