Name |
Type |
Description |
Notes |
email |
str |
Email of the customer |
|
from openapi_client.models.user_invite_schema import UserInviteSchema
# TODO update the JSON string below
json = "{}"
# create an instance of UserInviteSchema from a JSON string
user_invite_schema_instance = UserInviteSchema.from_json(json)
# print the JSON string representation of the object
print(UserInviteSchema.to_json())
# convert the object into a dict
user_invite_schema_dict = user_invite_schema_instance.to_dict()
# create an instance of UserInviteSchema from a dict
user_invite_schema_from_dict = UserInviteSchema.from_dict(user_invite_schema_dict)
[Back to Model list] [Back to API list] [Back to README]