| Name | Type | Description | Notes |
|---|---|---|---|
| invitation_results | List[InvitationResult] | [optional] |
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)