Skip to main content

Tenantuimetadataitemresponse

Properties

NameTypeDescriptionNotes
iframe_white_liststrParameter that organizational administrators can adjust to permit another domain to encapsulate IDN within an iframe. If you would like to reset the value use "null". It will only allow include into iframe non authenticated portions of the product, such as password reset.[optional]
username_labelstrDescriptor for the username input field. If you would like to reset the value use "null".[optional]
username_empty_textstrPlaceholder text displayed in the username input field. If you would like to reset the value use "null".[optional]
}

Example

from sailpoint.ui_metadata.models.tenantuimetadataitemresponse import Tenantuimetadataitemresponse

tenantuimetadataitemresponse = Tenantuimetadataitemresponse(
iframe_white_list='http://example.com http://example2.com',
username_label='Email',
username_empty_text='Please provide your work email address...'
)

[Back to top]