""" Options: Date: 2026-05-19 09:51:41 Version: 8.22 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://dev-api-booster.richemont.com #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: PatchSellout.* #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 @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class PatchSelloutResponse: pass # @Route("/warranty/{saleId}", "PATCH") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class PatchSellout(IReturn[PatchSelloutResponse]): # @ApiMember(Description="Unique Identifier of the Sell-out item created in Booster", IsRequired=true) sale_id: int = 0 """ Unique Identifier of the Sell-out item created in Booster """ # @ApiMember(Description="Emails of Sale Representatives") sale_representative_emails: Optional[List[str]] = None """ Emails of Sale Representatives """ # @ApiMember(Description="Promoter Type ID") promoter_type_id: Optional[str] = None """ Promoter Type ID """