(* Options: Date: 2024-06-26 17:22:10 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: HomepageWidgetSettingsQuery.* //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 ICompanyRequest = abstract CompanyId:Nullable with get,set abstract SitePath:String with get,set [] type HomepageWidgetServiceLayoutsResponse() = /// ///The layout id. /// [] member val Id:Int32 = new Int32() with get,set /// ///The layout name. /// [] member val Name:String = null with get,set /// ///The layout description. /// [] member val Description:String = null with get,set /// ///The layout code. /// [] member val Code:String = null with get,set [] type HomepageWidgetTimeLayoutsResponse() = /// ///The layout id. /// [] member val Id:Int32 = new Int32() with get,set /// ///The layout name. /// [] member val Name:String = null with get,set /// ///The layout description. /// [] member val Description:String = null with get,set /// ///The layout code. /// [] member val Code:String = null with get,set [] type HomepageWidgetBookingLayoutsResponse() = /// ///The layout id. /// [] member val Id:Int32 = new Int32() with get,set /// ///The layout name. /// [] member val Name:String = null with get,set /// ///The layout description. /// [] member val Description:String = null with get,set /// ///The layout code. /// [] member val Code:String = null with get,set [] type HomepageWidgetBookingMethodsResponse() = /// ///The layout id. /// [] member val Id:Int32 = new Int32() with get,set /// ///The layout name. /// [] member val Name:String = null with get,set /// ///The layout description. /// [] member val Description:String = null with get,set /// ///The layout code. /// [] member val Code:String = null with get,set [] type HomepageWidgetSettingsQueryResponse() = /// ///The company id. /// [] member val CompanyId:Guid = new Guid() with get,set /// ///The service layouts id. /// [] member val ServiceLayoutId:Int32 = new Int32() with get,set /// ///The time layouts id. /// [] member val TimeLayoutId:Int32 = new Int32() with get,set /// ///The booking layouts id. /// [] member val BookingLayoutId:Int32 = new Int32() with get,set /// ///The primary color of the booking widget. /// [] member val PrimaryColor:String = null with get,set /// ///If you should show the service image in the booking widget. /// [] member val ShowServiceImage:Boolean = new Boolean() with get,set /// ///If you should show the rebate code field in the booking widget. /// [] member val ShowRebateCodeField:Boolean = new Boolean() with get,set /// ///If you should show the next available time in the booking widget. /// [] member val ShowNextAvailableTime:Boolean = new Boolean() with get,set /// ///If you should show the create account option. /// [] member val EnableCreateAccount:Boolean = new Boolean() with get,set /// ///If you should show the login to account option. /// [] member val EnableLogin:Boolean = new Boolean() with get,set /// ///If you should show the facebook login to account option. /// [] member val EnableFacebookLogin:Boolean = new Boolean() with get,set /// ///If you should show the direct booking option. This enables customer to book with entering contact information. /// [] member val EnableDirectBooking:Boolean = new Boolean() with get,set /// ///If the site should have dark theme or not. /// [] member val DarkTheme:Boolean = new Boolean() with get,set /// ///If you should show the end time in the booking widget. /// [] member val ShowEndTime:Boolean = new Boolean() with get,set /// ///What text to show on booked time slots. Default text is Booked /// [] member val BookedTimeSlotText:String = null with get,set member val ServiceLayoutOptions:ResizeArray = new ResizeArray() with get,set member val TimeLayoutOptions:ResizeArray = new ResizeArray() with get,set member val BookingLayoutOptions:ResizeArray = new ResizeArray() with get,set member val BookingMethodOptions:ResizeArray = new ResizeArray() with get,set [] [] type HomepageWidgetSettingsQuery() = 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 homepage sitepath. /// [] member val SitePath:String = null with get,set /// ///If you want to include what service layout options to select from /// [] member val IncludeServiceLayoutOptions:Boolean = new Boolean() with get,set /// ///If you want to include what time layout options to select from /// [] member val IncludeTimeLayoutOptions:Boolean = new Boolean() with get,set /// ///If you want to include what booking layout options to select from /// [] member val IncludeBookingLayoutOptions:Boolean = new Boolean() with get,set /// ///If you want to include what booking method options to select from /// [] member val IncludeBookingMethodOptions:Boolean = new Boolean() with get,set