Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 903 Bytes

WhoamiDto.md

File metadata and controls

28 lines (21 loc) · 903 Bytes

WhoamiDto

Properties

Name Type Description Notes
principal_id str
principal_type str

Example

from affinidi_tdk_iam_client.models.whoami_dto import WhoamiDto

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

# convert the object into a dict
whoami_dto_dict = whoami_dto_instance.to_dict()
# create an instance of WhoamiDto from a dict
whoami_dto_from_dict = WhoamiDto.from_dict(whoami_dto_dict)

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