thousandeyes-sdk-python/thousandeyes-sdk-test-results/src/thousandeyes_sdk/test_results/models/test_direction.py
Miguel Pragosa dcf0f54d56
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#96)
Co-authored-by: API Team <api-team@thousandeyes.com>
2025-04-02 12:58:49 +01:00

43 lines
922 B
Python

# coding: utf-8
"""
Test Results API
Get test result metrics for Network and Application Synthetics tests.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
from __future__ import annotations
import json
from enum import Enum
from typing_extensions import Self
class TestDirection(str, Enum):
"""
Direction of the test, which affects how results are shown.
"""
"""
allowed enum values
"""
TO_MINUS_TARGET = 'to-target'
FROM_MINUS_TARGET = 'from-target'
BIDIRECTIONAL = 'bidirectional'
UNKNOWN = 'unknown'
@classmethod
def from_json(cls, json_str: str) -> Self:
"""Create an instance of TestDirection from a JSON string"""
return cls(json.loads(json_str))
@classmethod
def _missing_(cls, value):
"""Handle unknown values"""
return cls.UNKNOWN