Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

RestrictedModelsResponse

Properties

Name Type Description Notes
successes List[str]
errors List[RestrictedModelError]

Example

from launchdarkly_api.models.restricted_models_response import RestrictedModelsResponse

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

# convert the object into a dict
restricted_models_response_dict = restricted_models_response_instance.to_dict()
# create an instance of RestrictedModelsResponse from a dict
restricted_models_response_from_dict = RestrictedModelsResponse.from_dict(restricted_models_response_dict)

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