| Name | Type | Description | Notes |
|---|---|---|---|
| response | ScheduleDto | [optional] | |
| count | int | [optional] | |
| links | List[ActiveConnectionsWrapperLinksInner] | [optional] | |
| status | int | [optional] | |
| status_code | int | [optional] |
from docspace_api_sdk.models.schedule_wrapper import ScheduleWrapper
# TODO update the JSON string below
json = "{}"
# create an instance of ScheduleWrapper from a JSON string
schedule_wrapper_instance = ScheduleWrapper.from_json(json)
# print the JSON string representation of the object
print(ScheduleWrapper.to_json())
# convert the object into a dict
schedule_wrapper_dict = schedule_wrapper_instance.to_dict()
# create an instance of ScheduleWrapper from a dict
schedule_wrapper_from_dict = ScheduleWrapper.from_dict(schedule_wrapper_dict)