Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

UserAzureDetails.md

File metadata and controls

31 lines (22 loc) · 1.09 KB

UserAzureDetails

Properties

Name Type Description Notes
oid str User object identifier on Azure AD [optional]
hd str User tenant (domain name) [optional]
preferred_username str User Preferred Username (UPN), i.e. the main email of the user [optional]

Example

from flat_api.models.user_azure_details import UserAzureDetails

# TODO update the JSON string below
json = "{}"
# create an instance of UserAzureDetails from a JSON string
user_azure_details_instance = UserAzureDetails.from_json(json)
# print the JSON string representation of the object
print UserAzureDetails.to_json()

# convert the object into a dict
user_azure_details_dict = user_azure_details_instance.to_dict()
# create an instance of UserAzureDetails from a dict
user_azure_details_form_dict = user_azure_details.from_dict(user_azure_details_dict)

[Back to Model list] [Back to API list] [Back to README]