/** * Catapult REST Endpoints * OpenAPI Specification of catapult-rest * * The version of the OpenAPI document: 1.0.4 * * * 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 TransactionBodyDTO */ export interface TransactionBodyDTO { /** * Absolute amount. An amount of 123456789 (absolute) for a mosaic with divisibility 6 means 123.456789 (relative). * @type {string} * @memberof TransactionBodyDTO */ maxFee: string; /** * Duration expressed in number of blocks. * @type {string} * @memberof TransactionBodyDTO */ deadline: string; } /** * Check if a given object implements the TransactionBodyDTO interface. */ export declare function instanceOfTransactionBodyDTO(value: Record): value is TransactionBodyDTO; export declare function TransactionBodyDTOFromJSON(json: any): TransactionBodyDTO; export declare function TransactionBodyDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionBodyDTO; export declare function TransactionBodyDTOToJSON(json: any): TransactionBodyDTO; export declare function TransactionBodyDTOToJSONTyped(value?: TransactionBodyDTO | null, ignoreDiscriminator?: boolean): any;