Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 968 Bytes

File metadata and controls

30 lines (21 loc) · 968 Bytes

RubricsResponse

Properties

Name Type Description Notes
data List[Rubric]
pages Pagination

Example

from postmypost_rest_sdk.models.rubrics_response import RubricsResponse

# TODO update the JSON string below
json = "{}"
# create an instance of RubricsResponse from a JSON string
rubrics_response_instance = RubricsResponse.from_json(json)
# print the JSON string representation of the object
print(RubricsResponse.to_json())

# convert the object into a dict
rubrics_response_dict = rubrics_response_instance.to_dict()
# create an instance of RubricsResponse from a dict
rubrics_response_from_dict = RubricsResponse.from_dict(rubrics_response_dict)

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