Name | Type | Description | Notes |
---|---|---|---|
rrule | RruleSchema | [optional] | |
work_items | List[WorkItemSchema] | [optional] |
from openapi_client.models.schedule_patch_data_value import SchedulePatchDataValue
# TODO update the JSON string below
json = "{}"
# create an instance of SchedulePatchDataValue from a JSON string
schedule_patch_data_value_instance = SchedulePatchDataValue.from_json(json)
# print the JSON string representation of the object
print(SchedulePatchDataValue.to_json())
# convert the object into a dict
schedule_patch_data_value_dict = schedule_patch_data_value_instance.to_dict()
# create an instance of SchedulePatchDataValue from a dict
schedule_patch_data_value_from_dict = SchedulePatchDataValue.from_dict(schedule_patch_data_value_dict)