Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 988 Bytes

File metadata and controls

31 lines (22 loc) · 988 Bytes

ModelConfigs

Properties

Name Type Description Notes
links PaginatedLinks [optional]
items List[ModelConfig]
total_count int

Example

from launchdarkly_api.models.model_configs import ModelConfigs

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

# convert the object into a dict
model_configs_dict = model_configs_instance.to_dict()
# create an instance of ModelConfigs from a dict
model_configs_from_dict = ModelConfigs.from_dict(model_configs_dict)

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