/** * Organizze API * Specification for the Organizze API described in [https://github.com/organizze/api-doc](https://github.com/organizze/api-doc) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Schema for creating or updating a credit card * @export * @interface CreditCardInput */ export interface CreditCardInput { /** * * @type {string} * @memberof CreditCardInput */ name: string; /** * * @type {string} * @memberof CreditCardInput */ description?: string | null; /** * * @type {string} * @memberof CreditCardInput */ cardNetwork?: string; /** * * @type {number} * @memberof CreditCardInput */ closingDay: number; /** * * @type {number} * @memberof CreditCardInput */ dueDay: number; /** * * @type {number} * @memberof CreditCardInput */ limitCents?: number; /** * * @type {boolean} * @memberof CreditCardInput */ archived?: boolean; /** * * @type {boolean} * @memberof CreditCardInput */ _default?: boolean; /** * * @type {string} * @memberof CreditCardInput */ institutionId?: string; } /** * Check if a given object implements the CreditCardInput interface. */ export declare function instanceOfCreditCardInput(value: object): value is CreditCardInput; export declare function CreditCardInputFromJSON(json: any): CreditCardInput; export declare function CreditCardInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreditCardInput; export declare function CreditCardInputToJSON(json: any): CreditCardInput; export declare function CreditCardInputToJSONTyped(value?: CreditCardInput | null, ignoreDiscriminator?: boolean): any;