Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.21 KB

File metadata and controls

30 lines (21 loc) · 1.21 KB

AiConfigsExperimentEnabledPeriodRep

Properties

Name Type Description Notes
start_date int [optional]
stop_date int [optional]

Example

from launchdarkly_api.models.ai_configs_experiment_enabled_period_rep import AiConfigsExperimentEnabledPeriodRep

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

# convert the object into a dict
ai_configs_experiment_enabled_period_rep_dict = ai_configs_experiment_enabled_period_rep_instance.to_dict()
# create an instance of AiConfigsExperimentEnabledPeriodRep from a dict
ai_configs_experiment_enabled_period_rep_from_dict = AiConfigsExperimentEnabledPeriodRep.from_dict(ai_configs_experiment_enabled_period_rep_dict)

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