Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.38 KB

File metadata and controls

30 lines (21 loc) · 1.38 KB

AiConfigsMetricEventDefaultRep

Properties

Name Type Description Notes
disabled bool Whether to disable defaulting missing unit events when calculating results. Defaults to false [optional]
value float The default value applied to missing unit events. Set to 0 when <code>disabled</code> is false. No other values are currently supported. [optional]

Example

from launchdarkly_api.models.ai_configs_metric_event_default_rep import AiConfigsMetricEventDefaultRep

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

# convert the object into a dict
ai_configs_metric_event_default_rep_dict = ai_configs_metric_event_default_rep_instance.to_dict()
# create an instance of AiConfigsMetricEventDefaultRep from a dict
ai_configs_metric_event_default_rep_from_dict = AiConfigsMetricEventDefaultRep.from_dict(ai_configs_metric_event_default_rep_dict)

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