/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * 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 GetChargebacksInput */ export interface GetChargebacksInput { /** * UTC Unix timestamp * @type {string} * @memberof GetChargebacksInput */ updateDate: string; } /** * Check if a given object implements the GetChargebacksInput interface. */ export declare function instanceOfGetChargebacksInput(value: object): boolean; export declare function GetChargebacksInputFromJSON(json: any): GetChargebacksInput; export declare function GetChargebacksInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetChargebacksInput; export declare function GetChargebacksInputToJSON(value?: GetChargebacksInput | null): any;