Files
kittycad.py/kittycad/models/api_call_query_group_by.py
Jess Frazelle 6b2fe3decb Update api spec (#162)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-11-27 16:01:20 -08:00

22 lines
777 B
Python

from enum import Enum
class ApiCallQueryGroupBy(str, Enum):
"""The field of an API call to group by.""" # noqa: E501
"""# The email of the user that requested the API call. """ # noqa: E501
EMAIL = "email"
"""# The HTTP method of the API call. """ # noqa: E501
METHOD = "method"
"""# The endpoint of the API call. """ # noqa: E501
ENDPOINT = "endpoint"
"""# The user ID of the user that requested the API call. """ # noqa: E501
USER_ID = "user_id"
"""# The origin of the API call. This is parsed from the `Origin` header. """ # noqa: E501
ORIGIN = "origin"
"""# The IP address of the user making the API call. """ # noqa: E501
IP_ADDRESS = "ip_address"
def __str__(self) -> str:
return str(self.value)