/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 GetGoogleFormsOAuthURLResponse */ export interface GetGoogleFormsOAuthURLResponse { /** * * @type {string} * @memberof GetGoogleFormsOAuthURLResponse */ oauthUrl?: string; } /** * Check if a given object implements the GetGoogleFormsOAuthURLResponse interface. */ export declare function instanceOfGetGoogleFormsOAuthURLResponse(value: object): value is GetGoogleFormsOAuthURLResponse; export declare function GetGoogleFormsOAuthURLResponseFromJSON(json: any): GetGoogleFormsOAuthURLResponse; export declare function GetGoogleFormsOAuthURLResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetGoogleFormsOAuthURLResponse; export declare function GetGoogleFormsOAuthURLResponseToJSON(json: any): GetGoogleFormsOAuthURLResponse; export declare function GetGoogleFormsOAuthURLResponseToJSONTyped(value?: GetGoogleFormsOAuthURLResponse | null, ignoreDiscriminator?: boolean): any;