| Name |
Type |
Description |
Notes |
| id |
UUID |
|
|
| tenant_id |
UUID |
|
|
| group_id |
UUID |
|
|
| user_id |
UUID |
|
|
| created_at |
datetime |
|
|
| updated_at |
datetime |
|
|
from ksapi.models.membership_response import MembershipResponse
# TODO update the JSON string below
json = "{}"
# create an instance of MembershipResponse from a JSON string
membership_response_instance = MembershipResponse.from_json(json)
# print the JSON string representation of the object
print(MembershipResponse.to_json())
# convert the object into a dict
membership_response_dict = membership_response_instance.to_dict()
# create an instance of MembershipResponse from a dict
membership_response_from_dict = MembershipResponse.from_dict(membership_response_dict)
[Back to Model list] [Back to API list] [Back to README]