/** * Organizze API * Specification for the Organizze API described in [https://github.com/organizze/api-doc](https://github.com/organizze/api-doc) * * The version of the OpenAPI document: 1.0.0 * * * 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 DeleteTransactionRequest */ export interface DeleteTransactionRequest { /** * * @type {boolean} * @memberof DeleteTransactionRequest */ updateFuture?: boolean; /** * * @type {boolean} * @memberof DeleteTransactionRequest */ updateAll?: boolean; } /** * Check if a given object implements the DeleteTransactionRequest interface. */ export declare function instanceOfDeleteTransactionRequest(value: object): value is DeleteTransactionRequest; export declare function DeleteTransactionRequestFromJSON(json: any): DeleteTransactionRequest; export declare function DeleteTransactionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteTransactionRequest; export declare function DeleteTransactionRequestToJSON(json: any): DeleteTransactionRequest; export declare function DeleteTransactionRequestToJSONTyped(value?: DeleteTransactionRequest | null, ignoreDiscriminator?: boolean): any;