| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Unique identifier for this block. | |
| type | str | Identifies the block variant and determines which additional properties are present in it. | |
| tags | List[str] | Semantic labels attached to this block. | [optional] |
| operator | str | The update operation applied to the attribute. | |
| attribute | UpdateAttributeValueBlock1Attribute | ||
| value | object | [optional] | |
| target | UpdateAttributeValueBlock1Target |
from talon_one.models.update_attribute_value_block import UpdateAttributeValueBlock
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateAttributeValueBlock from a JSON string
update_attribute_value_block_instance = UpdateAttributeValueBlock.from_json(json)
# print the JSON string representation of the object
print(UpdateAttributeValueBlock.to_json())
# convert the object into a dict
update_attribute_value_block_dict = update_attribute_value_block_instance.to_dict()
# create an instance of UpdateAttributeValueBlock from a dict
update_attribute_value_block_from_dict = UpdateAttributeValueBlock.from_dict(update_attribute_value_block_dict)