Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.04 KB

GetInviteLinkRequest.md

File metadata and controls

28 lines (20 loc) · 1.04 KB

GetInviteLinkRequest

Properties

Name Type Description Notes
email str Set to the user email address to generate an invite link. The value is case sensitive. [optional]

Example

from onelogin.models.get_invite_link_request import GetInviteLinkRequest

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

# convert the object into a dict
get_invite_link_request_dict = get_invite_link_request_instance.to_dict()
# create an instance of GetInviteLinkRequest from a dict
get_invite_link_request_form_dict = get_invite_link_request.from_dict(get_invite_link_request_dict)

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