""" Options: Date: 2024-12-23 11:57:35 Version: 8.0 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://consumer-api.brovs.com #GlobalNamespace: ConsumerApi #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: AddRecentLocationRequest.* #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 # module ConsumerApi class RecentLocationType(str, Enum): HOME = 'Home' CURRENT = 'Current' PIN = 'Pin' NAMED = 'Named' @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class AddRecentLocationResponse: success: bool = False # @Route("/location/AddRecentLocation", "POST") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class AddRecentLocationRequest(IReturn[AddRecentLocationResponse], IPost): name: Optional[str] = None description: Optional[str] = None latitude: float = 0.0 longitude: float = 0.0 location_type: Optional[RecentLocationType] = None google_address_components: Optional[List[str]] = None