Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.33 KB

File metadata and controls

31 lines (23 loc) · 1.33 KB

PageableModificationResponse

The response containing paginated modification information.

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]