""" Options:
Date: 2024-11-24 14:03:26
Version: 6.50
Tip: To override a DTO option, remove "#" prefix before updating
BaseUrl: https://clubready.com/api/current
#GlobalNamespace:
#AddServiceStackTypes: True
#AddResponseStatus: False
#AddImplicitVersion:
#AddDescriptionAsComments: True
IncludeTypes: GetSalesPackageRequest.*
#ExcludeTypes:
#DefaultImports: datetime,decimal,marshmallow.fields:*,servicestack:*,typing:*,dataclasses:dataclass/field,dataclasses_json:dataclass_json/LetterCase/Undefined/config,enum:Enum/IntEnum
#DataClass:
#DataClassJson:
"""
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
class RestrictedResourceType(str, Enum):
STORE = 'Store'
CHAIN = 'Chain'
USER = 'User'
UNDEFINED = 'Undefined'
class IRestrictedApiRequest(IApiKeyEndpoint):
restricted_id: Optional[int] = None
restricted_resource_type: Optional[RestrictedResourceType] = None
class IApiKeyEndpoint:
api_key: Optional[str] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class ApiDtoBase:
api_key: Optional[str] = None
store_id: Optional[int] = None
chain_id: Optional[int] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GetSalesPackageRequestDto(ApiDtoBase):
package_id: int = 0
# @Route("/sales/package/{PackageId}", "GET")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GetSalesPackageRequest(GetSalesPackageRequestDto, IRestrictedApiRequest):
# @ApiMember(DataType="string", Description="Api Key - grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query")
api_key: Optional[str] = None
"""
Api Key - grants access to resources
"""
# @ApiMember(DataType="string", Description="ID # of store to get package details for.
Either StoreId or ChainId is required", Name="StoreId", ParameterType="query")
store_id: Optional[int] = None
"""
ID # of store to get package details for.
Either StoreId or ChainId is required
"""
# @ApiMember(DataType="string", Description="ID # of chain to get package details for.
Either StoreId or ChainId is required", Name="ChainId", ParameterType="query")
chain_id: Optional[int] = None
"""
ID # of chain to get package details for.
Either StoreId or ChainId is required
"""
# @ApiMember(DataType="string", Description="ID # of package to get details for", IsRequired=true, Name="PackageId", ParameterType="path")
package_id: int = 0
"""
ID # of package to get details for
"""
restricted_id: Optional[int] = None
restricted_resource_type: Optional[RestrictedResourceType] = None