Skip to content

Files

Latest commit

cf544e0 · Nov 15, 2024

History

History
29 lines (20 loc) · 932 Bytes

UserInviteSchema.md

File metadata and controls

29 lines (20 loc) · 932 Bytes

UserInviteSchema

Properties

Name Type Description Notes
email str Email of the customer

Example

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]