CreateAssetEventsBody

Create asset events request.

Properties

NameTypeDescriptionNotes
asset_idint
extraobject[optional]

Example

from airflow_client.client.models.create_asset_events_body import CreateAssetEventsBody

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

# convert the object into a dict
create_asset_events_body_dict = create_asset_events_body_instance.to_dict()
# create an instance of CreateAssetEventsBody from a dict
create_asset_events_body_from_dict = CreateAssetEventsBody.from_dict(create_asset_events_body_dict)

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