""" Options: Date: 2024-07-03 12:34:07 Version: 8.23 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://api.bokamera.se #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: AddResource.* #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 AddResourceTypeResource: # @ApiMember(Description="The resource id") id: int = 0 """ The resource id """ # @ApiMember(Description="The priority of the resource. If no priority is set it will take random resource when booking a time.") priority: int = 0 """ The priority of the resource. If no priority is set it will take random resource when booking a time. """ # @Route("/resourcetypes/{Id}/addresource", "POST") # @ValidateRequest(Validator="IsAuthenticated") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class AddResource: # @ApiMember(Description="The company id", IsRequired=true) company_id: Optional[str] = None """ The company id """ # @ApiMember(Description="The ResourceType id", IsRequired=true, ParameterType="path") id: int = 0 """ The ResourceType id """ # @ApiMember(Description="The resources to be included") resources: Optional[List[AddResourceTypeResource]] = None """ The resources to be included """