/** * 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 { StatementMetaDTO } from './StatementMetaDTO'; import type { ResolutionStatementDTO } from './ResolutionStatementDTO'; /** * A resolution statement keeps the relation between a namespace alias used in a transaction * and the real address or mosaicId. * * @export * @interface ResolutionStatementInfoDTO */ export interface ResolutionStatementInfoDTO { /** * Internal resource identifier. * @type {string} * @memberof ResolutionStatementInfoDTO */ id: string; /** * * @type {StatementMetaDTO} * @memberof ResolutionStatementInfoDTO */ meta: StatementMetaDTO; /** * * @type {ResolutionStatementDTO} * @memberof ResolutionStatementInfoDTO */ statement: ResolutionStatementDTO; } /** * Check if a given object implements the ResolutionStatementInfoDTO interface. */ export declare function instanceOfResolutionStatementInfoDTO(value: Record): value is ResolutionStatementInfoDTO; export declare function ResolutionStatementInfoDTOFromJSON(json: any): ResolutionStatementInfoDTO; export declare function ResolutionStatementInfoDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolutionStatementInfoDTO; export declare function ResolutionStatementInfoDTOToJSON(json: any): ResolutionStatementInfoDTO; export declare function ResolutionStatementInfoDTOToJSONTyped(value?: ResolutionStatementInfoDTO | null, ignoreDiscriminator?: boolean): any;