Create asset events request.
| Name | Type | Description | Notes |
|---|---|---|---|
| asset_id | int | ||
| extra | object | [optional] |
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)