Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 997 Bytes

File metadata and controls

29 lines (20 loc) · 997 Bytes

InvitationResponse

Properties

Name Type Description Notes
invitation_results List[InvitationResult] [optional]

Example

from instana_client.models.invitation_response import InvitationResponse

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

# convert the object into a dict
invitation_response_dict = invitation_response_instance.to_dict()
# create an instance of InvitationResponse from a dict
invitation_response_from_dict = InvitationResponse.from_dict(invitation_response_dict)

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