""" Options: Date: 2024-06-17 00:28:10 Version: 8.23 Tip: To override a DTO option, remove "#" prefix before updating BaseUrl: https://testapi.bokamera.se #GlobalNamespace: #AddServiceStackTypes: True #AddResponseStatus: False #AddImplicitVersion: #AddDescriptionAsComments: True IncludeTypes: DeleteDateSchedule.* #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 ICompany: company_id: Optional[str] = None @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class ScheduleResources: id: int = 0 # @ApiMember(Description="Name of the resource") name: Optional[str] = None """ Name of the resource """ # @ApiMember(Description="The image url of the resource") image_url: Optional[str] = None """ The image url of the resource """ @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class ScheduleServices: id: int = 0 # @ApiMember(Description="Name of the service") name: Optional[str] = None """ Name of the service """ # @ApiMember(Description="The image url of the service") image_url: Optional[str] = None """ The image url of the service """ @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class DateScheduleDateResponse: id: int = 0 from_: datetime.datetime = field(metadata=config(field_name='from'), default=datetime.datetime(1, 1, 1)) to: datetime.datetime = datetime.datetime(1, 1, 1) response_status: Optional[ResponseStatus] = None @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class DateScheduleQueryResponse: # @ApiMember(Description="The schedule id") id: int = 0 """ The schedule id """ # @ApiMember(Description="Name of the schedule") name: Optional[str] = None """ Name of the schedule """ # @ApiMember(Description="Description of the schedule") description: Optional[str] = None """ Description of the schedule """ # @ApiMember(Description="If the schedule is active or not") active: bool = False """ If the schedule is active or not """ # @ApiMember(Description="If the schedule is only connected to some specific resources. Note: You must have IncludeResources property to see this.", IsRequired=true) is_resource_specific: Optional[bool] = None """ If the schedule is only connected to some specific resources. Note: You must have IncludeResources property to see this. """ # @ApiMember(Description="Schedule dates") schedule_dates: Optional[List[DateScheduleDateResponse]] = None """ Schedule dates """ # @ApiMember(Description="The resources that is connected to the schedule") resources: Optional[List[ScheduleResources]] = None """ The resources that is connected to the schedule """ # @ApiMember(Description="The services that is connected to the schedule") services: Optional[List[ScheduleServices]] = None """ The services that is connected to the schedule """ # @ApiMember(Description="The timestamp when the schedule was updated", IsRequired=true) updated_date: datetime.datetime = datetime.datetime(1, 1, 1) """ The timestamp when the schedule was updated """ # @ApiMember(Description="The timestamp when the schedule was created", IsRequired=true) created_date: datetime.datetime = datetime.datetime(1, 1, 1) """ The timestamp when the schedule was created """ response_status: Optional[ResponseStatus] = None # @Route("/schedules/date/{Id}", "DELETE") # @ValidateRequest(Validator="IsAuthenticated") @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class DeleteDateSchedule(IReturn[DateScheduleQueryResponse], ICompany): # @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") company_id: Optional[str] = None """ The company id, if empty will use the company id for the user you are logged in with. """ # @ApiMember(Description="The schedule id", IsRequired=true, ParameterType="path") id: int = 0 """ The schedule id """