Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.14 KB

File metadata and controls

29 lines (20 loc) · 1.14 KB

IdentitySourceUserProfileForDelete

Properties

Name Type Description Notes
external_id str [optional]

Example

from okta.models.identity_source_user_profile_for_delete import IdentitySourceUserProfileForDelete

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

# convert the object into a dict
identity_source_user_profile_for_delete_dict = identity_source_user_profile_for_delete_instance.to_dict()
# create an instance of IdentitySourceUserProfileForDelete from a dict
identity_source_user_profile_for_delete_from_dict = IdentitySourceUserProfileForDelete.from_dict(identity_source_user_profile_for_delete_dict)

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