/** * 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. */ import type { NetworkTypeEnum } from './NetworkTypeEnum'; import type { CosignatureDTO } from './CosignatureDTO'; /** * Transaction to combine multiple transactions together. * @export * @interface AggregateTransactionDTO */ export interface AggregateTransactionDTO { /** * A number that allows uint 32 values. * @type {number} * @memberof AggregateTransactionDTO */ size: number; /** * Entity's signature generated by the signer. * @type {string} * @memberof AggregateTransactionDTO */ signature: string; /** * Public key. * @type {string} * @memberof AggregateTransactionDTO */ signerPublicKey: string; /** * Entity version. * @type {number} * @memberof AggregateTransactionDTO */ version: number; /** * * @type {NetworkTypeEnum} * @memberof AggregateTransactionDTO */ network: NetworkTypeEnum; /** * * @type {number} * @memberof AggregateTransactionDTO */ type: number; /** * Absolute amount. An amount of 123456789 (absolute) for a mosaic with divisibility 6 means 123.456789 (relative). * @type {string} * @memberof AggregateTransactionDTO */ maxFee: string; /** * Duration expressed in number of blocks. * @type {string} * @memberof AggregateTransactionDTO */ deadline: string; /** * * @type {string} * @memberof AggregateTransactionDTO */ transactionsHash: string; /** * Array of transaction cosignatures. * @type {Array} * @memberof AggregateTransactionDTO */ cosignatures: Array; } /** * Check if a given object implements the AggregateTransactionDTO interface. */ export declare function instanceOfAggregateTransactionDTO(value: Record): value is AggregateTransactionDTO; export declare function AggregateTransactionDTOFromJSON(json: any): AggregateTransactionDTO; export declare function AggregateTransactionDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregateTransactionDTO; export declare function AggregateTransactionDTOToJSON(json: any): AggregateTransactionDTO; export declare function AggregateTransactionDTOToJSONTyped(value?: AggregateTransactionDTO | null, ignoreDiscriminator?: boolean): any;