Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

GetIssue2XXResponse

Properties

Name Type Description Notes
page_info PageInfo [optional]
results List[Issue] [optional]

Example

from seerr.models.get_issue2_xx_response import GetIssue2XXResponse

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

# convert the object into a dict
get_issue2_xx_response_dict = get_issue2_xx_response_instance.to_dict()
# create an instance of GetIssue2XXResponse from a dict
get_issue2_xx_response_from_dict = GetIssue2XXResponse.from_dict(get_issue2_xx_response_dict)

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