/** * 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. */ /** * Object used to track the status of an asynchronous job. * @export * @interface AsyncJobId */ export interface AsyncJobId { /** * * @type {string} * @memberof AsyncJobId */ token?: string; } /** * Check if a given object implements the AsyncJobId interface. */ export declare function instanceOfAsyncJobId(value: object): value is AsyncJobId; export declare function AsyncJobIdFromJSON(json: any): AsyncJobId; export declare function AsyncJobIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): AsyncJobId; export declare function AsyncJobIdToJSON(json: any): AsyncJobId; export declare function AsyncJobIdToJSONTyped(value?: AsyncJobId | null, ignoreDiscriminator?: boolean): any;