/** * 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 to the check of whether consent was already granted. * @export * @interface OAuthConsentGrantedResponse */ export interface OAuthConsentGrantedResponse { /** * True if consent for the given authorization request was already given. * @type {boolean} * @memberof OAuthConsentGrantedResponse */ granted?: boolean; } /** * Check if a given object implements the OAuthConsentGrantedResponse interface. */ export declare function instanceOfOAuthConsentGrantedResponse(value: object): value is OAuthConsentGrantedResponse; export declare function OAuthConsentGrantedResponseFromJSON(json: any): OAuthConsentGrantedResponse; export declare function OAuthConsentGrantedResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthConsentGrantedResponse; export declare function OAuthConsentGrantedResponseToJSON(json: any): OAuthConsentGrantedResponse; export declare function OAuthConsentGrantedResponseToJSONTyped(value?: OAuthConsentGrantedResponse | null, ignoreDiscriminator?: boolean): any;