/** * 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 { TransactionInfoDTOTransaction } from './TransactionInfoDTOTransaction'; import type { TransactionInfoDTOMeta } from './TransactionInfoDTOMeta'; /** * * @export * @interface TransactionInfoDTO */ export interface TransactionInfoDTO { /** * Internal resource identifier. * @type {string} * @memberof TransactionInfoDTO */ id: string; /** * * @type {TransactionInfoDTOMeta} * @memberof TransactionInfoDTO */ meta: TransactionInfoDTOMeta; /** * * @type {TransactionInfoDTOTransaction} * @memberof TransactionInfoDTO */ transaction: TransactionInfoDTOTransaction; } /** * Check if a given object implements the TransactionInfoDTO interface. */ export declare function instanceOfTransactionInfoDTO(value: Record): value is TransactionInfoDTO; export declare function TransactionInfoDTOFromJSON(json: any): TransactionInfoDTO; export declare function TransactionInfoDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionInfoDTO; export declare function TransactionInfoDTOToJSON(json: any): TransactionInfoDTO; export declare function TransactionInfoDTOToJSONTyped(value?: TransactionInfoDTO | null, ignoreDiscriminator?: boolean): any;