Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

OrganizationInvitationCreation.md

File metadata and controls

31 lines (22 loc) · 1.27 KB

OrganizationInvitationCreation

The parameters to create an organization invitation

Properties

Name Type Description Notes
email str The email address you want to send the invitation to [optional]
organization_role str User's Organization Role [optional] [default to 'teacher']

Example

from flat_api.models.organization_invitation_creation import OrganizationInvitationCreation

# TODO update the JSON string below
json = "{}"
# create an instance of OrganizationInvitationCreation from a JSON string
organization_invitation_creation_instance = OrganizationInvitationCreation.from_json(json)
# print the JSON string representation of the object
print OrganizationInvitationCreation.to_json()

# convert the object into a dict
organization_invitation_creation_dict = organization_invitation_creation_instance.to_dict()
# create an instance of OrganizationInvitationCreation from a dict
organization_invitation_creation_form_dict = organization_invitation_creation.from_dict(organization_invitation_creation_dict)

[Back to Model list] [Back to API list] [Back to README]