(* Options: Date: 2024-06-17 01:05:23 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: RecurringScheduleIntervalsQuery.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open System.IO [] type ICompany = abstract CompanyId:Nullable with get,set [] type IInterval = abstract From:DateTime with get,set abstract To:DateTime with get,set [] type ScheduleIntervalsQueryResponse() = member val From:DateTime = new DateTime() with get,set member val To:DateTime = new DateTime() with get,set member val Duration:TimeSpan = new TimeSpan() with get,set [] [] [] type RecurringScheduleIntervalsQuery() = interface IReturn /// ///Company to show services for /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///From what datetime to show times /// [] member val From:DateTime = new DateTime() with get,set /// ///To what datetime to show times /// [] member val To:DateTime = new DateTime() with get,set /// ///Here you can select one of the resource, if none is selected it will show available times for all /// [] member val ResourceIds:Int32[] = [||] with get,set member val ResponseStatus:ResponseStatus = null with get,set