blob: e5da31faac5171610d7997312865723caf42a658 [file] [view]
# CreateAssetEventsBody
Create asset events request.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**access_control** | [**AssetEventAccessControl**](AssetEventAccessControl.md) | | [optional]
**asset_id** | **int** | |
**extra** | **Dict[str, object]** | | [optional]
**partition_key** | **str** | | [optional]
## Example
```python
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)