/** * 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 { EmbeddedTransactionInfoDTO } from './EmbeddedTransactionInfoDTO'; /** * * @export * @interface EmbeddedTransactionBodyDTO */ export interface EmbeddedTransactionBodyDTO { /** * Array of transactions initiated by different accounts. * @type {Array} * @memberof EmbeddedTransactionBodyDTO */ transactions: Array; } /** * Check if a given object implements the EmbeddedTransactionBodyDTO interface. */ export declare function instanceOfEmbeddedTransactionBodyDTO(value: Record): value is EmbeddedTransactionBodyDTO; export declare function EmbeddedTransactionBodyDTOFromJSON(json: any): EmbeddedTransactionBodyDTO; export declare function EmbeddedTransactionBodyDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbeddedTransactionBodyDTO; export declare function EmbeddedTransactionBodyDTOToJSON(json: any): EmbeddedTransactionBodyDTO; export declare function EmbeddedTransactionBodyDTOToJSONTyped(value?: EmbeddedTransactionBodyDTO | null, ignoreDiscriminator?: boolean): any;