| Name | Type | Description | Notes |
|---|---|---|---|
| str | |||
| group_id | str | ||
| message | str | [optional] | |
| path | str | [optional] | |
| team_id | str | [optional] |
from instana_client.models.invitation import Invitation
# TODO update the JSON string below
json = "{}"
# create an instance of Invitation from a JSON string
invitation_instance = Invitation.from_json(json)
# print the JSON string representation of the object
print(Invitation.to_json())
# convert the object into a dict
invitation_dict = invitation_instance.to_dict()
# create an instance of Invitation from a dict
invitation_from_dict = Invitation.from_dict(invitation_dict)