Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

AuthQuery.md

File metadata and controls

31 lines (22 loc) · 1.05 KB

AuthQuery

Properties

Name Type Description Notes
inv_code str Code sent via email as a result of successful call to send_invitation [optional]
organization_id str ID of organization to authenticate into [optional]
redirect_uri str URL to redirect to after successful login [optional]

Example

from trieve_py_client.models.auth_query import AuthQuery

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

# convert the object into a dict
auth_query_dict = auth_query_instance.to_dict()
# create an instance of AuthQuery from a dict
auth_query_form_dict = auth_query.from_dict(auth_query_dict)

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