conekta/conekta-node

View on GitHub
model/checkout.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.
 */


// May contain unused imports in some cases
// @ts-ignore
import { CheckoutOrderTemplate } from './checkout-order-template';

/**
 * It is a sub-resource of the Order model that can be stipulated in order to configure its corresponding checkout
 * @export
 * @interface Checkout
 */
export interface Checkout {
    /**
     * Those are the payment methods that will be available for the link
     * @type {Array<string>}
     * @memberof Checkout
     */
    'allowed_payment_methods': Array<string>;
    /**
     * It is the time when the link will expire. It is expressed in seconds since the Unix epoch. The valid range is from 2 to 365 days (the valid range will be taken from the next day of the creation date at 00:01 hrs) 
     * @type {number}
     * @memberof Checkout
     */
    'expires_at': number;
    /**
     * This flag allows you to specify if months without interest will be active.
     * @type {boolean}
     * @memberof Checkout
     */
    'monthly_installments_enabled'?: boolean;
    /**
     * This field allows you to specify the number of months without interest.
     * @type {Array<number>}
     * @memberof Checkout
     */
    'monthly_installments_options'?: Array<number>;
    /**
     * Reason for charge
     * @type {string}
     * @memberof Checkout
     */
    'name': string;
    /**
     * This flag allows you to fill in the shipping information at checkout.
     * @type {boolean}
     * @memberof Checkout
     */
    'needs_shipping_contact'?: boolean;
    /**
     * This flag allows you to specify if the link will be on demand.
     * @type {boolean}
     * @memberof Checkout
     */
    'on_demand_enabled'?: boolean | null;
    /**
     * 
     * @type {CheckoutOrderTemplate}
     * @memberof Checkout
     */
    'order_template': CheckoutOrderTemplate;
    /**
     * It is the number of payments that can be made through the link.
     * @type {number}
     * @memberof Checkout
     */
    'payments_limit_count'?: number;
    /**
     * false: single use. true: multiple payments
     * @type {boolean}
     * @memberof Checkout
     */
    'recurrent': boolean;
    /**
     * It is the type of link that will be created. It must be a valid type.
     * @type {string}
     * @memberof Checkout
     */
    'type': string;
}