/** * ChatGPT Function * Backend for Azure OpenAI integrations * * The version of the OpenAPI document: v1.0.0 * * * 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 Authorization */ export interface Authorization { /** * * @type {object} * @memberof Authorization */ enterpriseId?: object | null; /** * * @type {string} * @memberof Authorization */ teamId?: string | null; /** * * @type {string} * @memberof Authorization */ userId?: string | null; /** * * @type {boolean} * @memberof Authorization */ isBot?: boolean | null; /** * * @type {boolean} * @memberof Authorization */ isEnterpriseInstall?: boolean | null; } /** * Check if a given object implements the Authorization interface. */ export declare function instanceOfAuthorization(value: object): value is Authorization; export declare function AuthorizationFromJSON(json: any): Authorization; export declare function AuthorizationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Authorization; export declare function AuthorizationToJSON(json: any): Authorization; export declare function AuthorizationToJSONTyped(value?: Authorization | null, ignoreDiscriminator?: boolean): any;