Files
kittycad.py/kittycad/models/storage.py
Jess Frazelle f5da088b67 Update api spec (#107)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-07-07 19:22:51 -07:00

24 lines
656 B
Python

from enum import Enum
class Storage(str, Enum):
"""Describes the storage format of a glTF 2.0 scene.""" # noqa: E501
"""# Binary glTF 2.0.
This is a single binary with .glb extension.
This is the default setting. """ # noqa: E501
BINARY = "binary"
"""# Standard glTF 2.0.
This is a JSON file with .gltf extension paired with a separate binary blob file with .bin extension. """ # noqa: E501
STANDARD = "standard"
"""# Embedded glTF 2.0.
Single JSON file with .gltf extension binary data encoded as base64 data URIs. """ # noqa: E501
EMBEDDED = "embedded"
def __str__(self) -> str:
return str(self.value)