/** * 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. */ /** * Response for an OAuth2 authorization url. * @export * @interface OAuthUrlResponse */ export interface OAuthUrlResponse { /** * The URL used to send the user the requested OAuth provider for authentication. * @type {string} * @memberof OAuthUrlResponse */ authorizationUrl?: string; } /** * Check if a given object implements the OAuthUrlResponse interface. */ export declare function instanceOfOAuthUrlResponse(value: object): value is OAuthUrlResponse; export declare function OAuthUrlResponseFromJSON(json: any): OAuthUrlResponse; export declare function OAuthUrlResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthUrlResponse; export declare function OAuthUrlResponseToJSON(json: any): OAuthUrlResponse; export declare function OAuthUrlResponseToJSONTyped(value?: OAuthUrlResponse | null, ignoreDiscriminator?: boolean): any;