/** * 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 { MosaicAddressRestrictionEntryWrapperDTO } from './MosaicAddressRestrictionEntryWrapperDTO'; /** * * @export * @interface MosaicAddressRestrictionDTO */ export interface MosaicAddressRestrictionDTO { /** * Internal resource identifier. * @type {string} * @memberof MosaicAddressRestrictionDTO */ id: string; /** * * @type {MosaicAddressRestrictionEntryWrapperDTO} * @memberof MosaicAddressRestrictionDTO */ mosaicRestrictionEntry: MosaicAddressRestrictionEntryWrapperDTO; } /** * Check if a given object implements the MosaicAddressRestrictionDTO interface. */ export declare function instanceOfMosaicAddressRestrictionDTO(value: Record): value is MosaicAddressRestrictionDTO; export declare function MosaicAddressRestrictionDTOFromJSON(json: any): MosaicAddressRestrictionDTO; export declare function MosaicAddressRestrictionDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): MosaicAddressRestrictionDTO; export declare function MosaicAddressRestrictionDTOToJSON(json: any): MosaicAddressRestrictionDTO; export declare function MosaicAddressRestrictionDTOToJSONTyped(value?: MosaicAddressRestrictionDTO | null, ignoreDiscriminator?: boolean): any;