Request body for updating an event note. At least one field must be provided.
| Name | Type | Description | Notes |
|---|---|---|---|
| event_id | str | Event ID or event code (e.g., "12345" or "g162795") | [optional] |
| note_id | str | Note ID | [optional] |
| text | str | Updated note content | [optional] |
| archived | bool | Archive the note | [optional] |
from cloudbeds_pms.models.event_note_update_request_schema import EventNoteUpdateRequestSchema
# TODO update the JSON string below
json = "{}"
# create an instance of EventNoteUpdateRequestSchema from a JSON string
event_note_update_request_schema_instance = EventNoteUpdateRequestSchema.from_json(json)
# print the JSON string representation of the object
print(EventNoteUpdateRequestSchema.to_json())
# convert the object into a dict
event_note_update_request_schema_dict = event_note_update_request_schema_instance.to_dict()
# create an instance of EventNoteUpdateRequestSchema from a dict
event_note_update_request_schema_from_dict = EventNoteUpdateRequestSchema.from_dict(event_note_update_request_schema_dict)