| Name | Type | Description | Notes |
|---|---|---|---|
| judges | List[JudgeAttachment] | List of judges for this variation. When updating, this replaces all existing judge attachments, and if empty, removes all judge attachments. | [optional] |
from launchdarkly_api.models.judge_configuration import JudgeConfiguration
# TODO update the JSON string below
json = "{}"
# create an instance of JudgeConfiguration from a JSON string
judge_configuration_instance = JudgeConfiguration.from_json(json)
# print the JSON string representation of the object
print(JudgeConfiguration.to_json())
# convert the object into a dict
judge_configuration_dict = judge_configuration_instance.to_dict()
# create an instance of JudgeConfiguration from a dict
judge_configuration_from_dict = JudgeConfiguration.from_dict(judge_configuration_dict)