Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 889 Bytes

File metadata and controls

31 lines (22 loc) · 889 Bytes

ApiMember

Properties

Name Type Description Notes
email str [optional]
name str [optional]
user_id str

Example

from instana_client.models.api_member import ApiMember

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

# convert the object into a dict
api_member_dict = api_member_instance.to_dict()
# create an instance of ApiMember from a dict
api_member_from_dict = ApiMember.from_dict(api_member_dict)

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