Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

AiConfigsAccess

Properties

Name Type Description Notes
denied List[AiConfigsAccessDenied]
allowed List[AiConfigsAccessAllowedRep]

Example

from launchdarkly_api.models.ai_configs_access import AiConfigsAccess

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

# convert the object into a dict
ai_configs_access_dict = ai_configs_access_instance.to_dict()
# create an instance of AiConfigsAccess from a dict
ai_configs_access_from_dict = AiConfigsAccess.from_dict(ai_configs_access_dict)

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