/** * 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 MosaicIds */ export interface MosaicIds { /** * Array of mosaic identifiers. * @type {Array} * @memberof MosaicIds */ mosaicIds?: Array; } /** * Check if a given object implements the MosaicIds interface. */ export declare function instanceOfMosaicIds(value: Record): value is MosaicIds; export declare function MosaicIdsFromJSON(json: any): MosaicIds; export declare function MosaicIdsFromJSONTyped(json: any, ignoreDiscriminator: boolean): MosaicIds; export declare function MosaicIdsToJSON(json: any): MosaicIds; export declare function MosaicIdsToJSONTyped(value?: MosaicIds | null, ignoreDiscriminator?: boolean): any;