| Name |
Type |
Description |
Notes |
| var_date |
datetime |
|
[optional] |
from launchdarkly_api.models.ai_configs_modification import AiConfigsModification
# TODO update the JSON string below
json = "{}"
# create an instance of AiConfigsModification from a JSON string
ai_configs_modification_instance = AiConfigsModification.from_json(json)
# print the JSON string representation of the object
print(AiConfigsModification.to_json())
# convert the object into a dict
ai_configs_modification_dict = ai_configs_modification_instance.to_dict()
# create an instance of AiConfigsModification from a dict
ai_configs_modification_from_dict = AiConfigsModification.from_dict(ai_configs_modification_dict)
[Back to Model list] [Back to API list] [Back to README]