""" Options: Date: 2024-05-01 04:08:26 Version: 8.13 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://techstacks.io #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: UserPostCommentReport.* #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 FlagType(str, Enum): VIOLATION = 'Violation' SPAM = 'Spam' ABUSIVE = 'Abusive' CONFIDENTIAL = 'Confidential' OFF_TOPIC = 'OffTopic' OTHER = 'Other' @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class UserPostCommentReportResponse: response_status: Optional[ResponseStatus] = None # @Route("/posts/{PostId}/comments/{Id}/report", "PUT") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class UserPostCommentReport(IReturn[UserPostCommentReportResponse], IPut): id: int = 0 post_id: int = 0 flag_type: Optional[FlagType] = None report_notes: Optional[str] = None