/** * Sonatype Guide API * REST API into [Sonatype Guide](https://guide.sonatype.com). * * The version of the OpenAPI document: 202607 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface Invoice */ export interface Invoice { /** * * @type {number} * @memberof Invoice */ amount?: number; /** * * @type {Date} * @memberof Invoice */ date?: Date; /** * * @type {string} * @memberof Invoice */ description?: string; /** * * @type {string} * @memberof Invoice */ id?: string; /** * * @type {string} * @memberof Invoice */ pdfUrl?: string; /** * * @type {string} * @memberof Invoice */ status?: string; /** * * @type {string} * @memberof Invoice */ subscriptionId?: string; /** * * @type {number} * @memberof Invoice */ totalCredits?: number; /** * * @type {number} * @memberof Invoice */ usedCredits?: number; } /** * Check if a given object implements the Invoice interface. */ export declare function instanceOfInvoice(value: object): value is Invoice; export declare function InvoiceFromJSON(json: any): Invoice; export declare function InvoiceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Invoice; export declare function InvoiceToJSON(json: any): Invoice; export declare function InvoiceToJSONTyped(value?: Invoice | null, ignoreDiscriminator?: boolean): any;