Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 971 Bytes

File metadata and controls

32 lines (23 loc) · 971 Bytes

EventsRequest

The Event request

Properties

Name Type Description Notes
source str [optional]
args object [optional]
url str [optional]

Example

from wordlift_client.models.events_request import EventsRequest

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

# convert the object into a dict
events_request_dict = events_request_instance.to_dict()
# create an instance of EventsRequest from a dict
events_request_from_dict = EventsRequest.from_dict(events_request_dict)

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