/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * 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 OauthProviderLoginUrl */ export interface OauthProviderLoginUrl { /** * OAuth authorization URL to redirect the user to for login * @type {string} * @memberof OauthProviderLoginUrl */ url: string; } export declare function OauthProviderLoginUrlFromJSON(json: any): OauthProviderLoginUrl; export declare function OauthProviderLoginUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): OauthProviderLoginUrl; export declare function OauthProviderLoginUrlToJSON(value?: OauthProviderLoginUrl | null): any;