/** * 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 TransactionMetaDTO */ export interface TransactionMetaDTO { /** * Height of the blockchain. * @type {string} * @memberof TransactionMetaDTO */ height: string; /** * * @type {string} * @memberof TransactionMetaDTO */ hash: string; /** * * @type {string} * @memberof TransactionMetaDTO */ merkleComponentHash: string; /** * Transaction index within the block. * @type {number} * @memberof TransactionMetaDTO */ index: number; /** * Number of milliseconds elapsed since the creation of the nemesis block. This value can be converted to epoch time by adding the network's 'epochAdjustment'. * @type {string} * @memberof TransactionMetaDTO */ timestamp?: string; /** * Fee multiplier applied to transactions contained in block. * @type {number} * @memberof TransactionMetaDTO */ feeMultiplier?: number; } /** * Check if a given object implements the TransactionMetaDTO interface. */ export declare function instanceOfTransactionMetaDTO(value: Record): value is TransactionMetaDTO; export declare function TransactionMetaDTOFromJSON(json: any): TransactionMetaDTO; export declare function TransactionMetaDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionMetaDTO; export declare function TransactionMetaDTOToJSON(json: any): TransactionMetaDTO; export declare function TransactionMetaDTOToJSONTyped(value?: TransactionMetaDTO | null, ignoreDiscriminator?: boolean): any;