/** * 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 { SourceDTO } from './SourceDTO'; import type { TransactionStatementDTOReceiptsInner } from './TransactionStatementDTOReceiptsInner'; /** * * @export * @interface TransactionStatementDTO */ export interface TransactionStatementDTO { /** * Height of the blockchain. * @type {string} * @memberof TransactionStatementDTO */ height: string; /** * * @type {SourceDTO} * @memberof TransactionStatementDTO */ source: SourceDTO; /** * Array of receipts. * @type {Array} * @memberof TransactionStatementDTO */ receipts: Array; } /** * Check if a given object implements the TransactionStatementDTO interface. */ export declare function instanceOfTransactionStatementDTO(value: Record): value is TransactionStatementDTO; export declare function TransactionStatementDTOFromJSON(json: any): TransactionStatementDTO; export declare function TransactionStatementDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionStatementDTO; export declare function TransactionStatementDTOToJSON(json: any): TransactionStatementDTO; export declare function TransactionStatementDTOToJSONTyped(value?: TransactionStatementDTO | null, ignoreDiscriminator?: boolean): any;