(* Options: Date: 2024-06-26 09:10:38 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: CodeLockSettingQuery.* //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 CodeLockSystemResponse() = /// ///The system type of the code lock /// [] member val Id:Int32 = new Int32() with get,set /// ///The name of the code lock system /// [] member val Name:String = null with get,set /// ///The description of the code lock system /// [] member val Description:String = null with get,set /// ///The logotype of the code lock system /// [] member val LogoType:Uri = null with get,set /// ///The supplier name of the code lock system /// [] member val Supplier:String = null with get,set [] type CodeLockSettingResponse() = member val CompanyId:Guid = new Guid() with get,set /// ///The system type of the code lock /// [] member val CodeLockSystemsId:Int32 = new Int32() with get,set /// ///If code lock sync is active /// [] member val Active:Boolean = new Boolean() with get,set /// ///Number of minutes the access should be valid before booking starts. /// [] member val ValidBeforeMinutes:Int32 = new Int32() with get,set /// ///Number of minutes the access should be valid after booking ends. /// [] member val ValidAfterMinutes:Int32 = new Int32() with get,set /// ///If it should clean up old bookings after the passed /// [] member val DeleteOldBySchedule:Boolean = new Boolean() with get,set /// ///If a notification should be sent by Email /// [] member val SendEmailNotification:Boolean = new Boolean() with get,set /// ///If a notification should be sent by SMS /// [] member val SendSMSNotification:Boolean = new Boolean() with get,set /// ///How long before the booking starts in minutes the notification should be sent /// [] member val EmailNotificationTime:Int32 = new Int32() with get,set /// ///How long before the booking starts in minutes the notification should be sent /// [] member val SMSNotificationTime:Int32 = new Int32() with get,set /// ///When settings was created /// [] member val Created:DateTime = new DateTime() with get,set /// ///When settings was updated /// [] member val Updated:DateTime = new DateTime() with get,set /// ///The available code lock systems to choose from /// [] member val CodeLockSystemOptions:ResizeArray = new ResizeArray() with get,set [] [] [] [] [] type CodeLockSettingQuery() = 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 /// ///If you want to include code locks that is supported. /// [] member val IncludeCodeLockSystemOptions:Boolean = new Boolean() with get,set