Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 923 Bytes

SelfInfo.md

File metadata and controls

31 lines (22 loc) · 923 Bytes

SelfInfo

Properties

Name Type Description Notes
type AuthResourceType [optional]
name str [optional]
var_self str [optional]

Example

from openapi_client.models.self_info import SelfInfo

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

# convert the object into a dict
self_info_dict = self_info_instance.to_dict()
# create an instance of SelfInfo from a dict
self_info_from_dict = SelfInfo.from_dict(self_info_dict)

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