/** * 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. */ /** * Contextual information about a web service call. * @export * @interface CallersContext */ export interface CallersContext { /** * Each web service request is issue a unique session ID (UUID) that is included in the call's access recored. Events that are triggered by a web service request should include the session ID so that they can be linked to each other and the call's access record. * @type {string} * @memberof CallersContext */ sessionId?: string; } /** * Check if a given object implements the CallersContext interface. */ export declare function instanceOfCallersContext(value: object): value is CallersContext; export declare function CallersContextFromJSON(json: any): CallersContext; export declare function CallersContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallersContext; export declare function CallersContextToJSON(json: any): CallersContext; export declare function CallersContextToJSONTyped(value?: CallersContext | null, ignoreDiscriminator?: boolean): any;