Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

ApiInteractionEventPutRequest.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

ApiInteractionEventPutRequest

Properties

Name Type Description Notes
event str

Example

from py_logto.models.api_interaction_event_put_request import ApiInteractionEventPutRequest

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

# convert the object into a dict
api_interaction_event_put_request_dict = api_interaction_event_put_request_instance.to_dict()
# create an instance of ApiInteractionEventPutRequest from a dict
api_interaction_event_put_request_from_dict = ApiInteractionEventPutRequest.from_dict(api_interaction_event_put_request_dict)

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