Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.41 KB

File metadata and controls

37 lines (28 loc) · 1.41 KB

AIConfigTargeting

Properties

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

Example

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)

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