/** * 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. */ import type { Transaction } from './Transaction'; /** * * @export * @interface CreditCardInvoiceFull */ export interface CreditCardInvoiceFull { /** * * @type {number} * @memberof CreditCardInvoiceFull */ id: number; /** * * @type {Date} * @memberof CreditCardInvoiceFull */ date: Date; /** * * @type {Date} * @memberof CreditCardInvoiceFull */ startingDate: Date; /** * * @type {Date} * @memberof CreditCardInvoiceFull */ closingDate: Date; /** * * @type {number} * @memberof CreditCardInvoiceFull */ amountCents: number; /** * * @type {number} * @memberof CreditCardInvoiceFull */ paymentAmountCents: number; /** * * @type {number} * @memberof CreditCardInvoiceFull */ balanceCents: number; /** * * @type {number} * @memberof CreditCardInvoiceFull */ previousBalanceCents: number; /** * * @type {number} * @memberof CreditCardInvoiceFull */ creditCardId: number; /** * * @type {Array} * @memberof CreditCardInvoiceFull */ transactions: Array; /** * * @type {Array} * @memberof CreditCardInvoiceFull */ payments: Array; } /** * Check if a given object implements the CreditCardInvoiceFull interface. */ export declare function instanceOfCreditCardInvoiceFull(value: object): value is CreditCardInvoiceFull; export declare function CreditCardInvoiceFullFromJSON(json: any): CreditCardInvoiceFull; export declare function CreditCardInvoiceFullFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreditCardInvoiceFull; export declare function CreditCardInvoiceFullToJSON(json: any): CreditCardInvoiceFull; export declare function CreditCardInvoiceFullToJSONTyped(value?: CreditCardInvoiceFull | null, ignoreDiscriminator?: boolean): any;