(* Options: Date: 2024-07-03 14:18:45 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: DeleteDateSchedule.* //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 ScheduleResources() = member val Id:Int32 = new Int32() with get,set /// ///Name of the resource /// [] member val Name:String = null with get,set /// ///The image url of the resource /// [] member val ImageUrl:Uri = null with get,set [] type ScheduleServices() = member val Id:Int32 = new Int32() with get,set /// ///Name of the service /// [] member val Name:String = null with get,set /// ///The image url of the service /// [] member val ImageUrl:Uri = null with get,set [] type DateScheduleDateResponse() = member val Id:Int32 = new Int32() with get,set member val From:DateTime = new DateTime() with get,set member val To:DateTime = new DateTime() with get,set member val ResponseStatus:ResponseStatus = null with get,set [] type DateScheduleQueryResponse() = /// ///The schedule id /// [] member val Id:Int32 = new Int32() with get,set /// ///Name of the schedule /// [] member val Name:String = null with get,set /// ///Description of the schedule /// [] member val Description:String = null with get,set /// ///If the schedule is active or not /// [] member val Active:Boolean = new Boolean() with get,set /// ///If the schedule is only connected to some specific resources. Note: You must have IncludeResources property to see this. /// [] member val IsResourceSpecific:Nullable = new Nullable() with get,set /// ///Schedule dates /// [] member val ScheduleDates:ResizeArray = new ResizeArray() with get,set /// ///The resources that is connected to the schedule /// [] member val Resources:ResizeArray = new ResizeArray() with get,set /// ///The services that is connected to the schedule /// [] member val Services:ResizeArray = new ResizeArray() with get,set /// ///The timestamp when the schedule was updated /// [] member val UpdatedDate:DateTime = new DateTime() with get,set /// ///The timestamp when the schedule was created /// [] member val CreatedDate:DateTime = new DateTime() with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] [] type DeleteDateSchedule() = interface IReturn /// ///The company id, if empty will use the company id for the user you are logged in with. /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///The schedule id /// [] member val Id:Int32 = new Int32() with get,set