Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 956 Bytes

File metadata and controls

31 lines (23 loc) · 956 Bytes

Components

Properties

Name Type Description Notes
type str
sub_type str [optional]
index str [optional]
parameters List[Parameter] [optional]

Example

from bsg_api.models.components import Components

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

# convert the object into a dict
components_dict = components_instance.to_dict()
# create an instance of Components from a dict
components_from_dict = Components.from_dict(components_dict)

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