Source code for junglescout.models.parameters.api_type
from enum import Enum
[docs]
class ApiType(Enum):
"""Represents the type of API used by the Jungle Scout Python client.
Attributes:
- JS: The Jungle Scout API.
- COBALT: The Cobalt API.
"""
JS = "junglescout"
COBALT = "cobalt"