""" Options: Date: 2024-12-15 20:55:35 Version: 6.10 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://staging-api.billiecart.com.au #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: ProjectTenantEventStreamRequest.* #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 TResponse = TypeVar('TResponse') @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class PostOperationUnTenanted(Generic[TResponse], IReturn[TResponse], IPost): @staticmethod def response_type(): return TResponse TResponse = TypeVar('TResponse') @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class PostOperationTenanted(Generic[TResponse], PostOperationUnTenanted[TResponse], ITenantedRequest): organisation_id: Optional[str] = None class ITenantedRequest: organisation_id: Optional[str] = None # @Route("/events/project", "POST") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class ProjectTenantEventStreamRequest(PostOperationTenanted[EmptyResponse], IReturn[EmptyResponse]): pass