/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ /** * * @export * @interface DateRangeFilter */ export interface DateRangeFilter { /** * Start time of transaction. If not specified will list all dates. * @type {Date} * @memberof DateRangeFilter */ gte?: Date; /** * End time of transaction. If not specified will list all dates. * @type {Date} * @memberof DateRangeFilter */ lte?: Date; } /** * Check if a given object implements the DateRangeFilter interface. */ export declare function instanceOfDateRangeFilter(value: object): boolean; export declare function DateRangeFilterFromJSON(json: any): DateRangeFilter; export declare function DateRangeFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): DateRangeFilter; export declare function DateRangeFilterToJSON(value?: DateRangeFilter | null): any;