/** * 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 MobileSettings */ export interface MobileSettings { /** * Whether to enable whitelisting mobile deeplink URLs, which will be used for redirecting back to the mobile app. Is required for many features such as social sign in. * @type {boolean} * @memberof MobileSettings */ deeplinkUrlsEnabled?: boolean; } export declare function MobileSettingsFromJSON(json: any): MobileSettings; export declare function MobileSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): MobileSettings; export declare function MobileSettingsToJSON(value?: MobileSettings | null): any;