UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

52 lines (51 loc) 1.62 kB
/** * OpenPay API * super charge your subscription management. * * The version of the OpenAPI document: 1.2.1 * * * 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 { InvoiceExternal } from './InvoiceExternal'; /** * * @export * @interface ListResponseInvoiceExternal */ export interface ListResponseInvoiceExternal { /** * * @type {Array<InvoiceExternal>} * @memberof ListResponseInvoiceExternal */ data: Array<InvoiceExternal>; /** * * @type {number} * @memberof ListResponseInvoiceExternal */ pageNumber: number; /** * * @type {number} * @memberof ListResponseInvoiceExternal */ pageSize: number; /** * * @type {number} * @memberof ListResponseInvoiceExternal */ totalObjects: number; } /** * Check if a given object implements the ListResponseInvoiceExternal interface. */ export declare function instanceOfListResponseInvoiceExternal(value: object): value is ListResponseInvoiceExternal; export declare function ListResponseInvoiceExternalFromJSON(json: any): ListResponseInvoiceExternal; export declare function ListResponseInvoiceExternalFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListResponseInvoiceExternal; export declare function ListResponseInvoiceExternalToJSON(json: any): ListResponseInvoiceExternal; export declare function ListResponseInvoiceExternalToJSONTyped(value?: ListResponseInvoiceExternal | null, ignoreDiscriminator?: boolean): any;