Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1021 Bytes

ConfigurationGroupCreate.md

File metadata and controls

29 lines (20 loc) · 1021 Bytes

ConfigurationGroupCreate

Properties

Name Type Description Notes
title str

Example

from qase.api_client_v1.models.configuration_group_create import ConfigurationGroupCreate

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

# convert the object into a dict
configuration_group_create_dict = configuration_group_create_instance.to_dict()
# create an instance of ConfigurationGroupCreate from a dict
configuration_group_create_form_dict = configuration_group_create.from_dict(configuration_group_create_dict)

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