| Name | Type | Description | Notes |
|---|---|---|---|
| created_at | int | Unix timestamp in milliseconds | |
| defaults | AIConfigTargetingDefaults | [optional] | |
| environments | Dict[str, AIConfigTargetingEnvironment] | ||
| experiments | AiConfigsExperimentInfoRep | ||
| key | str | ||
| name | str | ||
| tags | List[str] | ||
| variations | List[AIConfigTargetingVariation] | ||
| version | int |
from launchdarkly_api.models.ai_config_targeting import AIConfigTargeting
# TODO update the JSON string below
json = "{}"
# create an instance of AIConfigTargeting from a JSON string
ai_config_targeting_instance = AIConfigTargeting.from_json(json)
# print the JSON string representation of the object
print(AIConfigTargeting.to_json())
# convert the object into a dict
ai_config_targeting_dict = ai_config_targeting_instance.to_dict()
# create an instance of AIConfigTargeting from a dict
ai_config_targeting_from_dict = AIConfigTargeting.from_dict(ai_config_targeting_dict)