conekta/conekta-node

View on GitHub
model/plan-response.ts

Summary

Maintainability
A
0 mins
Test Coverage
/* tslint:disable */
/* eslint-disable */
/**
 * Conekta API
 * Conekta sdk
 *
 * The version of the OpenAPI document: 2.1.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;
}