Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

SubmitInteraction200Response.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

SubmitInteraction200Response

Properties

Name Type Description Notes
redirect_to str

Example

from py_logto.models.submit_interaction200_response import SubmitInteraction200Response

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

# convert the object into a dict
submit_interaction200_response_dict = submit_interaction200_response_instance.to_dict()
# create an instance of SubmitInteraction200Response from a dict
submit_interaction200_response_from_dict = SubmitInteraction200Response.from_dict(submit_interaction200_response_dict)

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