Detailed evaluation information
| Name | Type | Description | Notes |
|---|---|---|---|
| client_id | str | Client identifier | [optional] |
| created_at | int | Creation timestamp (milliseconds since epoch) | [optional] |
| created_by | str | User who created the evaluation | [optional] |
| description | str | Description of the evaluation | [optional] |
| evaluation_id | str | Unique identifier for the evaluation | [optional] |
| evaluation_name | str | Human-readable name for the evaluation | [optional] |
| evaluator_ids | List[str] | List of evaluator IDs to be used | [optional] |
| model_names | List[str] | List of model names to filter traces | [optional] |
| sampling_percentage | float | Percentage of traces to sample | [optional] |
| schedule_enabled | bool | Whether automatic scheduling is enabled | [optional] |
| schedule_end_date | int | Epoch ms end boundary when end_type=on_date | [optional] |
| schedule_end_occurrences | int | Max scheduler-fired runs | [optional] |
| schedule_end_type | str | End condition: never, on_date, after_occurrences | [optional] |
| schedule_frequency | str | Recurrence cadence | [optional] |
| schedule_run_count | int | Count of scheduler-fired runs so far | [optional] |
| schedule_start_time | int | Epoch ms of first allowed scheduled run | [optional] |
| schedule_timezone | str | IANA timezone for schedule start time | [optional] |
| schedule_week_days | List[str] | Day codes for weekly frequency (mon-sun) | [optional] |
| service_names | List[str] | List of service names to filter traces | [optional] |
| time_before_run_hours | int | Hours before run to include traces | [optional] |
| time_before_run_minutes | int | Minutes before run to include traces | [optional] |
| trace_ids | List[str] | List of trace IDs to evaluate | [optional] |
from instana_client.models.evaluation_detail_response import EvaluationDetailResponse
# TODO update the JSON string below
json = "{}"
# create an instance of EvaluationDetailResponse from a JSON string
evaluation_detail_response_instance = EvaluationDetailResponse.from_json(json)
# print the JSON string representation of the object
print(EvaluationDetailResponse.to_json())
# convert the object into a dict
evaluation_detail_response_dict = evaluation_detail_response_instance.to_dict()
# create an instance of EvaluationDetailResponse from a dict
evaluation_detail_response_from_dict = EvaluationDetailResponse.from_dict(evaluation_detail_response_dict)