|
|
|
|
|
|
|
|
""" |
|
|
VCell API |
|
|
|
|
|
VCell API |
|
|
|
|
|
The version of the OpenAPI document: 1.0.1 |
|
|
Contact: vcell_support@uchc.com |
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech) |
|
|
|
|
|
Do not edit the class manually. |
|
|
""" |
|
|
|
|
|
|
|
|
from __future__ import annotations |
|
|
import json |
|
|
import pprint |
|
|
import re |
|
|
from enum import Enum |
|
|
|
|
|
|
|
|
|
|
|
try: |
|
|
from typing import Self |
|
|
except ImportError: |
|
|
from typing_extensions import Self |
|
|
|
|
|
|
|
|
class GeometryMode(str, Enum): |
|
|
""" |
|
|
GeometryMode |
|
|
""" |
|
|
|
|
|
""" |
|
|
allowed enum values |
|
|
""" |
|
|
GEOMETRY_SELECTIONS = 'GEOMETRY_SELECTIONS' |
|
|
GEOMETRY_SLICE = 'GEOMETRY_SLICE' |
|
|
GEOMETRY_FULL = 'GEOMETRY_FULL' |
|
|
|
|
|
@classmethod |
|
|
def from_json(cls, json_str: str) -> Self: |
|
|
"""Create an instance of GeometryMode from a JSON string""" |
|
|
return cls(json.loads(json_str)) |
|
|
|
|
|
|
|
|
|