I have generated the latest API!
This commit is contained in:
15
kittycad/models/unit_time_format.py
Normal file
15
kittycad/models/unit_time_format.py
Normal file
@ -0,0 +1,15 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class UnitTimeFormat(str, Enum):
|
||||
SECOND = 'second'
|
||||
MINUTE = 'minute'
|
||||
HOUR = 'hour'
|
||||
DAY = 'day'
|
||||
WEEK = 'week'
|
||||
YEAR = 'year'
|
||||
JULIAN_YEAR = 'julian_year'
|
||||
GREGORIAN_YEAR = 'gregorian_year'
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user