Update api spec (#124)
* YOYO NEW API SPEC! * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> * tuples Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates; Signed-off-by: Jess Frazelle <github@jessfraz.com> * I have generated the latest API! --------- Signed-off-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
15
kittycad/models/rtc_ice_protocol.py
Normal file
15
kittycad/models/rtc_ice_protocol.py
Normal file
@ -0,0 +1,15 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class RtcIceProtocol(str, Enum):
|
||||
"""ICEProtocol indicates the transport protocol type that is used in the ice.URL structure.""" # noqa: E501
|
||||
|
||||
"""# Unspecified indicates that the protocol is unspecified. """ # noqa: E501
|
||||
UNSPECIFIED = "unspecified"
|
||||
"""# UDP indicates the URL uses a UDP transport. """ # noqa: E501
|
||||
UDP = "udp"
|
||||
"""# TCP indicates the URL uses a TCP transport. """ # noqa: E501
|
||||
TCP = "tcp"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user