(* Options: Date: 2024-07-03 12:51:24 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: UpdateHomepageSettings.* //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 HomepageTemplateResponse() = /// ///The template id /// [] member val Id:Int32 = new Int32() with get,set /// ///The template name /// [] member val Name:String = null with get,set /// ///The template description /// [] member val Description:String = null with get,set /// ///The template image url /// [] member val ImageUrl:Uri = null with get,set [] type HomepageHeroSectionStyleResponse() = /// ///The hero section style id /// [] member val Id:Int32 = new Int32() with get,set /// ///The hero section style name /// [] member val Name:String = null with get,set /// ///The hero section style description /// [] member val Description:String = null with get,set [] type HomepageSettingsQueryResponse() = /// ///The company id /// [] member val CompanyId:Guid = new Guid() with get,set /// ///The text for homepage heading /// [] member val HomepageHeading:String = null with get,set /// ///The text for homepage startpage heading /// [] member val WelcomePageHeading:String = null with get,set /// ///The text for homepage startpage body /// [] member val WelcomePageBody:String = null with get,set /// ///The text for homepage about us page heading /// [] member val AboutUsPageHeading:String = null with get,set /// ///The text for homepage about us page body /// [] member val AboutUsPageBody:String = null with get,set /// ///The startpage image url /// [] member val ImageUrl:Uri = null with get,set /// ///The template for the homepage /// [] member val HomePageTemplateId:Int32 = new Int32() with get,set /// ///The hero section style for the homepage /// [] member val HeroSectionStyleId:Int32 = new Int32() with get,set /// ///Show rating on the page /// [] member val ShowRating:Boolean = new Boolean() with get,set /// ///Enable the BokaMera Homepage /// [] member val EnableHomepage:Boolean = new Boolean() with get,set /// ///Will show when the homepage settings was created, note it will only be shown if your logged in as admin for the company. /// [] member val Updated:Nullable = new Nullable() with get,set /// ///Will show when the homepage settings was updated, note it will only be shown if your logged in as admin for the company. /// [] member val Created:Nullable = new Nullable() with get,set /// ///The homepage templates options to select from /// [] member val HomePageTemplateOptions:ResizeArray = new ResizeArray() with get,set /// ///The homepage hero section style options to select from /// [] member val HomepageHeroSectionStyleOptions:ResizeArray = new ResizeArray() with get,set [] [] [] type UpdateHomepageSettings() = interface IReturn /// ///The company id /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///The text for homepage heading /// [] member val HomepageHeading:String = null with get,set /// ///The text for homepage startpage heading /// [] member val WelcomePageHeading:String = null with get,set /// ///The text for homepage startpage body /// [] member val WelcomePageBody:String = null with get,set /// ///The text for homepage about us page heading /// [] member val AboutUsPageHeading:String = null with get,set /// ///The text for homepage about us page body /// [] member val AboutUsPageBody:String = null with get,set /// ///The startpage image url /// [] member val ImageUrl:Uri = null with get,set /// ///The template for the homepage /// [] member val HomePageTemplateId:Nullable = new Nullable() with get,set /// ///Show rating on the page /// [] member val ShowRating:Nullable = new Nullable() with get,set /// ///Enable the BokaMera Homepage /// [] member val EnableHomepage:Nullable = new Nullable() with get,set /// ///The hero section style for the homepage /// [] member val HeroSectionStyleId:Nullable = new Nullable() with get,set