Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 914 Bytes

RelationSuite.md

File metadata and controls

29 lines (20 loc) · 914 Bytes

RelationSuite

Properties

Name Type Description Notes
data List[RelationSuiteItem]

Example

from qase.api_client_v2.models.relation_suite import RelationSuite

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

# convert the object into a dict
relation_suite_dict = relation_suite_instance.to_dict()
# create an instance of RelationSuite from a dict
relation_suite_form_dict = relation_suite.from_dict(relation_suite_dict)

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