I have generated the latest API!

This commit is contained in:
github-actions[bot]
2022-07-25 22:46:48 +00:00
parent d86f2560ac
commit 0d39b80547
80 changed files with 8335 additions and 22 deletions

View File

@ -0,0 +1,12 @@
from enum import Enum
class UnitVelocityFormat(str, Enum):
METERS_PER_SECOND = 'meters_per_second'
FEET_PER_SECOND = 'feet_per_second'
MILES_PER_HOUR = 'miles_per_hour'
KILOMETERS_PER_HOUR = 'kilometers_per_hour'
KNOT = 'knot'
def __str__(self) -> str:
return str(self.value)