/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A range of IDs * @export * @interface MigrationIdRange */ export interface MigrationIdRange { /** * The first ID in the range. * @type {number} * @memberof MigrationIdRange */ minimumId?: number; /** * The last ID in the range plus one. * @type {number} * @memberof MigrationIdRange */ maximumId?: number; } /** * Check if a given object implements the MigrationIdRange interface. */ export declare function instanceOfMigrationIdRange(value: object): value is MigrationIdRange; export declare function MigrationIdRangeFromJSON(json: any): MigrationIdRange; export declare function MigrationIdRangeFromJSONTyped(json: any, ignoreDiscriminator: boolean): MigrationIdRange; export declare function MigrationIdRangeToJSON(json: any): MigrationIdRange; export declare function MigrationIdRangeToJSONTyped(value?: MigrationIdRange | null, ignoreDiscriminator?: boolean): any;