UNPKG

@apideck/node

Version:
40 lines (39 loc) 1.03 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * 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 InvoicesFilter */ export interface InvoicesFilter { /** * * @type {Date} * @memberof InvoicesFilter */ updated_since?: Date; /** * * @type {Date} * @memberof InvoicesFilter */ created_since?: Date; /** * Invoice number to search for * @type {string} * @memberof InvoicesFilter */ number?: string; } export declare function InvoicesFilterFromJSON(json: any): InvoicesFilter; export declare function InvoicesFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoicesFilter; export declare function InvoicesFilterToJSON(value?: InvoicesFilter | null): any;