/** * 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 ProjectSettingsGeneral */ export interface ProjectSettingsGeneral { /** * * @type {string} * @memberof ProjectSettingsGeneral */ displayName?: string; /** * Support email address displayed to users * @type {string} * @memberof ProjectSettingsGeneral */ supportEmail?: string | null; /** * Custom support text displayed to users in the SDK * @type {string} * @memberof ProjectSettingsGeneral */ supportText?: string | null; /** * URL of the application logo image displayed in the SDK * @type {string} * @memberof ProjectSettingsGeneral */ appLogo?: string | null; /** * URL of the image shown when a user is not on the access list * @type {string} * @memberof ProjectSettingsGeneral */ imageUserNotInAccessList?: string | null; /** * URL of the image shown when a user is on the access list * @type {string} * @memberof ProjectSettingsGeneral */ imageUserInAccessList?: string | null; /** * * @type {{ [key: string]: string; }} * @memberof ProjectSettingsGeneral */ supportUrls?: { [key: string]: string; }; /** * Header text displayed on the user data collection welcome screen * @type {string} * @memberof ProjectSettingsGeneral */ collectUserDataWelcomeHeader?: string | null; /** * Message text displayed on the user data collection welcome screen * @type {string} * @memberof ProjectSettingsGeneral */ collectUserDataWelcomeMessage?: string | null; /** * Whether to skip optional KYC fields during the onboarding flow * @type {boolean} * @memberof ProjectSettingsGeneral */ skipOptionalKYCFieldDuringOnboarding?: boolean; /** * * @type {string} * @memberof ProjectSettingsGeneral */ emailCompanyName?: string; } export declare function ProjectSettingsGeneralFromJSON(json: any): ProjectSettingsGeneral; export declare function ProjectSettingsGeneralFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsGeneral; export declare function ProjectSettingsGeneralToJSON(value?: ProjectSettingsGeneral | null): any;