UNPKG

@apideck/node

Version:
28 lines (27 loc) 765 B
/** * 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 BillsFilter */ export interface BillsFilter { /** * * @type {Date} * @memberof BillsFilter */ updated_since?: Date; } export declare function BillsFilterFromJSON(json: any): BillsFilter; export declare function BillsFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): BillsFilter; export declare function BillsFilterToJSON(value?: BillsFilter | null): any;