/** * 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 { MosaicGlobalRestrictionEntryDTO } from './MosaicGlobalRestrictionEntryDTO'; import type { MosaicRestrictionEntryTypeEnum } from './MosaicRestrictionEntryTypeEnum'; /** * * @export * @interface MosaicGlobalRestrictionEntryWrapperDTO */ export interface MosaicGlobalRestrictionEntryWrapperDTO { /** * The version of the state * @type {number} * @memberof MosaicGlobalRestrictionEntryWrapperDTO */ version: number; /** * * @type {string} * @memberof MosaicGlobalRestrictionEntryWrapperDTO */ compositeHash: string; /** * * @type {MosaicRestrictionEntryTypeEnum} * @memberof MosaicGlobalRestrictionEntryWrapperDTO */ entryType: MosaicRestrictionEntryTypeEnum; /** * Mosaic identifier. * @type {string} * @memberof MosaicGlobalRestrictionEntryWrapperDTO */ mosaicId: string; /** * * @type {Array} * @memberof MosaicGlobalRestrictionEntryWrapperDTO */ restrictions: Array; } /** * Check if a given object implements the MosaicGlobalRestrictionEntryWrapperDTO interface. */ export declare function instanceOfMosaicGlobalRestrictionEntryWrapperDTO(value: Record): value is MosaicGlobalRestrictionEntryWrapperDTO; export declare function MosaicGlobalRestrictionEntryWrapperDTOFromJSON(json: any): MosaicGlobalRestrictionEntryWrapperDTO; export declare function MosaicGlobalRestrictionEntryWrapperDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): MosaicGlobalRestrictionEntryWrapperDTO; export declare function MosaicGlobalRestrictionEntryWrapperDTOToJSON(json: any): MosaicGlobalRestrictionEntryWrapperDTO; export declare function MosaicGlobalRestrictionEntryWrapperDTOToJSONTyped(value?: MosaicGlobalRestrictionEntryWrapperDTO | null, ignoreDiscriminator?: boolean): any;