/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * ID of a context. * @export * @interface ContextID */ export interface ContextID { /** * The ID of the context. * @type {string} * @memberof ContextID */ id: string; } export declare function ContextIDFromJSON(json: any): ContextID; export declare function ContextIDFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContextID; export declare function ContextIDToJSON(value?: ContextID): any;