Source code for agntcy_acp.acp_v0.models.run_status

# Copyright AGNTCY Contributors (https://github.com/agntcy)
# SPDX-License-Identifier: Apache-2.0
# coding: utf-8

"""
Agent Connect Protocol

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

The version of the OpenAPI document: 0.2.2
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


[docs] class RunStatus(str, Enum): """ RunStatus """ """ allowed enum values """ PENDING = "pending" ERROR = "error" SUCCESS = "success" TIMEOUT = "timeout" INTERRUPTED = "interrupted"
[docs] @classmethod def from_json(cls, json_str: str) -> Self: """Create an instance of RunStatus from a JSON string""" return cls(json.loads(json_str))