The response containing paginated modification information.
| Name | Type | Description | Notes |
|---|---|---|---|
| data | object | The paginated modification data. | [optional] |
| limit | int | The maximum number of results returned per page. | [optional] |
| last_modified_on | datetime | The date when the user consent was last modified. | [optional] |
from docspace_api_sdk.models.pageable_modification_response import PageableModificationResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PageableModificationResponse from a JSON string
pageable_modification_response_instance = PageableModificationResponse.from_json(json)
# print the JSON string representation of the object
print(PageableModificationResponse.to_json())
# convert the object into a dict
pageable_modification_response_dict = pageable_modification_response_instance.to_dict()
# create an instance of PageableModificationResponse from a dict
pageable_modification_response_from_dict = PageableModificationResponse.from_dict(pageable_modification_response_dict)