/**
* 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 GetMoneyInChequeDetailsInput
*/
export interface GetMoneyInChequeDetailsInput {
/**
*
* @type {string}
* @memberof GetMoneyInChequeDetailsInput
*/
updateDate?: string;
/**
* End Date UTC Unix Timestamp
* @type {string}
* @memberof GetMoneyInChequeDetailsInput
*/
updateEndDate?: string;
/**
* Cheque Payment (by default) or Pagaré:
15 = Cheque payment.
23 = Pagaré.
* @type {number}
* @memberof GetMoneyInChequeDetailsInput
*/
chequeType?: GetMoneyInChequeDetailsInputChequeTypeEnum;
/**
* Unique ID generated by your server
* @type {string}
* @memberof GetMoneyInChequeDetailsInput
*/
reference?: string;
}
/**
* @export
*/
export declare const GetMoneyInChequeDetailsInputChequeTypeEnum: {
readonly NUMBER_15: 15;
readonly NUMBER_23: 23;
};
export declare type GetMoneyInChequeDetailsInputChequeTypeEnum = typeof GetMoneyInChequeDetailsInputChequeTypeEnum[keyof typeof GetMoneyInChequeDetailsInputChequeTypeEnum];
/**
* Check if a given object implements the GetMoneyInChequeDetailsInput interface.
*/
export declare function instanceOfGetMoneyInChequeDetailsInput(value: object): boolean;
export declare function GetMoneyInChequeDetailsInputFromJSON(json: any): GetMoneyInChequeDetailsInput;
export declare function GetMoneyInChequeDetailsInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMoneyInChequeDetailsInput;
export declare function GetMoneyInChequeDetailsInputToJSON(value?: GetMoneyInChequeDetailsInput | null): any;