Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

CreateDatasetEvent

Properties

Name Type Description Notes
dataset_uri str The URI of the dataset
extra object The dataset event extra [optional]

Example

from titanium_airflow_client.models.create_dataset_event import CreateDatasetEvent

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

# convert the object into a dict
create_dataset_event_dict = create_dataset_event_instance.to_dict()
# create an instance of CreateDatasetEvent from a dict
create_dataset_event_from_dict = CreateDatasetEvent.from_dict(create_dataset_event_dict)

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