Skip to content

Files

Latest commit

cf3128d · Jan 8, 2024

History

History
30 lines (21 loc) · 964 Bytes

ExternalIssue.md

File metadata and controls

30 lines (21 loc) · 964 Bytes

ExternalIssue

Properties

Name Type Description Notes
type str [optional]
issues List[ExternalIssueIssuesInner] [optional]

Example

from qaseio.models.external_issue import ExternalIssue

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

# convert the object into a dict
external_issue_dict = external_issue_instance.to_dict()
# create an instance of ExternalIssue from a dict
external_issue_form_dict = external_issue.from_dict(external_issue_dict)

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