/** * 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. */ /** * Type of mosaic restriction. * * 0 - Uninitialized value indicating no restriction. * * 1 (EQ) - Allow if equal. * * 2 (NE) - Allow if not equal. * * 3 (LT) - Allow if less than. * * 4 (LE) - Allow if less than or equal. * * 5 (GT) - Allow if greater than. * * 6 (GE) - Allow if greater than or equal. * * @export */ export declare const MosaicRestrictionTypeEnum: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; readonly NUMBER_2: 2; readonly NUMBER_3: 3; readonly NUMBER_4: 4; readonly NUMBER_5: 5; readonly NUMBER_6: 6; }; export declare type MosaicRestrictionTypeEnum = typeof MosaicRestrictionTypeEnum[keyof typeof MosaicRestrictionTypeEnum]; export declare function instanceOfMosaicRestrictionTypeEnum(value: any): boolean; export declare function MosaicRestrictionTypeEnumFromJSON(json: any): MosaicRestrictionTypeEnum; export declare function MosaicRestrictionTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): MosaicRestrictionTypeEnum; export declare function MosaicRestrictionTypeEnumToJSON(value?: MosaicRestrictionTypeEnum | null): any; export declare function MosaicRestrictionTypeEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): MosaicRestrictionTypeEnum;