/** * 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. */ /** * boolean value indicating whether proposed changes to the OAuth client will require reverification * @export * @interface OAuthClientVerificationPrecheckResult */ export interface OAuthClientVerificationPrecheckResult { /** * True iff the proposed changes to the OAuth client will require reverification * @type {boolean} * @memberof OAuthClientVerificationPrecheckResult */ reverificationRequired?: boolean; } /** * Check if a given object implements the OAuthClientVerificationPrecheckResult interface. */ export declare function instanceOfOAuthClientVerificationPrecheckResult(value: object): value is OAuthClientVerificationPrecheckResult; export declare function OAuthClientVerificationPrecheckResultFromJSON(json: any): OAuthClientVerificationPrecheckResult; export declare function OAuthClientVerificationPrecheckResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthClientVerificationPrecheckResult; export declare function OAuthClientVerificationPrecheckResultToJSON(json: any): OAuthClientVerificationPrecheckResult; export declare function OAuthClientVerificationPrecheckResultToJSONTyped(value?: OAuthClientVerificationPrecheckResult | null, ignoreDiscriminator?: boolean): any;