Issue¶
Publication issue (issue number).
Properties¶
Name | Type | Description | Notes |
---|---|---|---|
Example¶
from deepsearch.cps.apis.public_v2.models.issue import Issue
# TODO update the JSON string below
json = "{}"
# create an instance of Issue from a JSON string
issue_instance = Issue.from_json(json)
# print the JSON string representation of the object
print(Issue.to_json())
# convert the object into a dict
issue_dict = issue_instance.to_dict()
# create an instance of Issue from a dict
issue_form_dict = issue.from_dict(issue_dict)