/** * 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. */ /** * OAuth 2.0 Authorization Response * @export * @interface OAuthAuthorizationResponse */ export interface OAuthAuthorizationResponse { /** * The authorization code returned to an OAuth client as part of the OAuth 2.0 'code flow' * @type {string} * @memberof OAuthAuthorizationResponse */ access_code?: string; } /** * Check if a given object implements the OAuthAuthorizationResponse interface. */ export declare function instanceOfOAuthAuthorizationResponse(value: object): value is OAuthAuthorizationResponse; export declare function OAuthAuthorizationResponseFromJSON(json: any): OAuthAuthorizationResponse; export declare function OAuthAuthorizationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthAuthorizationResponse; export declare function OAuthAuthorizationResponseToJSON(json: any): OAuthAuthorizationResponse; export declare function OAuthAuthorizationResponseToJSONTyped(value?: OAuthAuthorizationResponse | null, ignoreDiscriminator?: boolean): any;