-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathartifact_output.py
More file actions
39 lines (27 loc) · 1.81 KB
/
artifact_output.py
File metadata and controls
39 lines (27 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# coding: utf-8
"""
Aignostics Platform API
The Aignostics Platform is a cloud-based service that enables organizations to access advanced computational pathology applications through a secure API. The platform provides standardized access to Aignostics' portfolio of computational pathology solutions, with Atlas H&E-TME serving as an example of the available API endpoints. To begin using the platform, your organization must first be registered by our business support team. If you don't have an account yet, please contact your account manager or email support@aignostics.com to get started. More information about our applications can be found on [https://platform.aignostics.com](https://platform.aignostics.com). **How to authorize and test API endpoints:** 1. Click the \"Authorize\" button in the right corner below 3. Click \"Authorize\" button in the dialog to log in with your Aignostics Platform credentials 4. After successful login, you'll be redirected back and can use \"Try it out\" on any endpoint **Note**: You only need to authorize once per session. The lock icons next to endpoints will show green when authorized.
The version of the OpenAPI document: 1.4.0
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 ArtifactOutput(str, Enum):
"""
ArtifactOutput
"""
"""
allowed enum values
"""
NONE = 'NONE'
AVAILABLE = 'AVAILABLE'
DELETED_BY_USER = 'DELETED_BY_USER'
DELETED_BY_SYSTEM = 'DELETED_BY_SYSTEM'
@classmethod
def from_json(cls, json_str: str) -> Self:
"""Create an instance of ArtifactOutput from a JSON string"""
return cls(json.loads(json_str))