/** * 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 MosaicNamesDTO */ export interface MosaicNamesDTO { /** * Mosaic identifier. * @type {string} * @memberof MosaicNamesDTO */ mosaicId: string; /** * Mosaic linked namespace names. * @type {Array} * @memberof MosaicNamesDTO */ names: Array; } /** * Check if a given object implements the MosaicNamesDTO interface. */ export declare function instanceOfMosaicNamesDTO(value: Record): value is MosaicNamesDTO; export declare function MosaicNamesDTOFromJSON(json: any): MosaicNamesDTO; export declare function MosaicNamesDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): MosaicNamesDTO; export declare function MosaicNamesDTOToJSON(json: any): MosaicNamesDTO; export declare function MosaicNamesDTOToJSONTyped(value?: MosaicNamesDTO | null, ignoreDiscriminator?: boolean): any;