/** * Kinde Management API * Provides endpoints to manage your Kinde Businesses * * The version of the OpenAPI document: 1 * Contact: support@kinde.com * * 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 UpdateOrganizationRequest */ export interface UpdateOrganizationRequest { /** * The organization's name. * @type {string} * @memberof UpdateOrganizationRequest */ name?: string; /** * The organization's ID. * @type {string} * @memberof UpdateOrganizationRequest */ externalId?: string; /** * The organization's brand settings - background color. * @type {string} * @memberof UpdateOrganizationRequest */ backgroundColor?: string; /** * The organization's brand settings - button color. * @type {string} * @memberof UpdateOrganizationRequest */ buttonColor?: string; /** * The organization's brand settings - button text color. * @type {string} * @memberof UpdateOrganizationRequest */ buttonTextColor?: string; /** * The organization's brand settings - link color. * @type {string} * @memberof UpdateOrganizationRequest */ linkColor?: string; /** * The organization's brand settings - dark mode background color. * @type {string} * @memberof UpdateOrganizationRequest */ backgroundColorDark?: string; /** * The organization's brand settings - dark mode button color. * @type {string} * @memberof UpdateOrganizationRequest */ buttonColorDark?: string; /** * The organization's brand settings - dark mode button text color. * @type {string} * @memberof UpdateOrganizationRequest */ buttonTextColorDark?: string; /** * The organization's brand settings - dark mode link color. * @type {string} * @memberof UpdateOrganizationRequest */ linkColorDark?: string; /** * The organization's brand settings - theme/mode 'light' | 'dark' | 'user_preference'. * @type {string} * @memberof UpdateOrganizationRequest */ themeCode?: string; /** * The organization's handle. * @type {string} * @memberof UpdateOrganizationRequest */ handle?: string; /** * Users can sign up to this organization. * @type {boolean} * @memberof UpdateOrganizationRequest */ isAllowRegistrations?: boolean; } /** * Check if a given object implements the UpdateOrganizationRequest interface. */ export declare function instanceOfUpdateOrganizationRequest(value: object): boolean; export declare function UpdateOrganizationRequestFromJSON(json: any): UpdateOrganizationRequest; export declare function UpdateOrganizationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateOrganizationRequest; export declare function UpdateOrganizationRequestToJSON(value?: UpdateOrganizationRequest | null): any;