/** * 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 { MosaicGlobalRestrictionEntryWrapperDTO } from './MosaicGlobalRestrictionEntryWrapperDTO'; /** * * @export * @interface MosaicGlobalRestrictionDTO */ export interface MosaicGlobalRestrictionDTO { /** * Internal resource identifier. * @type {string} * @memberof MosaicGlobalRestrictionDTO */ id: string; /** * * @type {MosaicGlobalRestrictionEntryWrapperDTO} * @memberof MosaicGlobalRestrictionDTO */ mosaicRestrictionEntry: MosaicGlobalRestrictionEntryWrapperDTO; } /** * Check if a given object implements the MosaicGlobalRestrictionDTO interface. */ export declare function instanceOfMosaicGlobalRestrictionDTO(value: Record): value is MosaicGlobalRestrictionDTO; export declare function MosaicGlobalRestrictionDTOFromJSON(json: any): MosaicGlobalRestrictionDTO; export declare function MosaicGlobalRestrictionDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): MosaicGlobalRestrictionDTO; export declare function MosaicGlobalRestrictionDTOToJSON(json: any): MosaicGlobalRestrictionDTO; export declare function MosaicGlobalRestrictionDTOToJSONTyped(value?: MosaicGlobalRestrictionDTO | null, ignoreDiscriminator?: boolean): any;