/*! * Copyright (c) 2017-present, Okta, Inc. and/or its affiliates. All rights reserved. * The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.") * * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and limitations under the License. */ /** * Okta Admin Management * Allows customers to easily access the Okta Management APIs * * OpenAPI spec version: 5.1.0 * Contact: devex-public@okta.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { GracePeriodRequiredSoon } from './../models/GracePeriodRequiredSoon'; import { PostAuthKeepMeSignedInPrompt } from './../models/PostAuthKeepMeSignedInPrompt'; import { WidgetGeneration } from './../models/WidgetGeneration'; export declare class SignInPageWidgetCustomizations { /** * The label for the sign in widget */ 'signInLabel'?: string; /** * The label for the username field */ 'usernameLabel'?: string; /** * The label for the username information tip */ 'usernameInfoTip'?: string; /** * The label for the password field */ 'passwordLabel'?: string; /** * The label for the password information tip */ 'passwordInfoTip'?: string; /** * Allows users to see their passwords as they type */ 'showPasswordVisibilityToggle'?: boolean; /** * Allows the user\'s identifier to appear on authentication and enrollment pages */ 'showUserIdentifier'?: boolean; /** * The label for the forgot password page */ 'forgotPasswordLabel'?: string; /** * The forgot password URL */ 'forgotPasswordUrl'?: string; /** * The label for the unlock account link */ 'unlockAccountLabel'?: string; /** * The unlock account URL */ 'unlockAccountUrl'?: string; /** * The label for the help link */ 'helpLabel'?: string; /** * The help link URL */ 'helpUrl'?: string; /** * The label for the first custom link */ 'customLink1Label'?: string; /** * The URL for the first custom link */ 'customLink1Url'?: string; /** * The label for the second custom link */ 'customLink2Label'?: string; /** * The URL for the second custom link */ 'customLink2Url'?: string; /** * The label for the authenticator page custom link */ 'authenticatorPageCustomLinkLabel'?: string; /** * The URL for the authenticator page custom link */ 'authenticatorPageCustomLinkUrl'?: string; /** * The label for the username field in the classic recovery flow */ 'classicRecoveryFlowEmailOrUsernameLabel'?: string; 'widgetGeneration'?: WidgetGeneration; 'postAuthKeepMeSignedInPrompt'?: PostAuthKeepMeSignedInPrompt; /** * The title of the footer link on the sign-in page. Only applicable for Classic Engine orgs. */ 'classicFooterHelpTitle'?: string; 'gracePeriodRequiredSoon'?: GracePeriodRequiredSoon; static readonly discriminator: string | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }