Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.39 KB

File metadata and controls

31 lines (22 loc) · 1.39 KB

AiConfigsExperimentEnvironmentSettingRep

Properties

Name Type Description Notes
start_date int [optional]
stop_date int [optional]
enabled_periods List[AiConfigsExperimentEnabledPeriodRep] [optional]

Example

from launchdarkly_api.models.ai_configs_experiment_environment_setting_rep import AiConfigsExperimentEnvironmentSettingRep

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

# convert the object into a dict
ai_configs_experiment_environment_setting_rep_dict = ai_configs_experiment_environment_setting_rep_instance.to_dict()
# create an instance of AiConfigsExperimentEnvironmentSettingRep from a dict
ai_configs_experiment_environment_setting_rep_from_dict = AiConfigsExperimentEnvironmentSettingRep.from_dict(ai_configs_experiment_environment_setting_rep_dict)

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