""" Options:
Date: 2025-04-15 08:04:07
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: UnstarAdMessageRequest.*
#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


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class UnstarAdMessageResponse:
    unstarred_ad_message_id: Optional[int] = None


# @Route("/admessage/UnstarAdMessage", "DELETE")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class UnstarAdMessageRequest(IReturn[UnstarAdMessageResponse], IDelete):
    ad_message_id: int = 0