/* Options: Date: 2024-07-03 12:30:26 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateHomepageSettings.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/homepage/settings", Verbs="PUT") @ValidateRequest(Validator="IsAuthenticated") public static class UpdateHomepageSettings implements IReturn, ICompany { /** * The company id */ @ApiMember(Description="The company id") public UUID CompanyId = null; /** * The text for homepage heading */ @ApiMember(Description="The text for homepage heading") public String HomepageHeading = null; /** * The text for homepage startpage heading */ @ApiMember(Description="The text for homepage startpage heading") public String WelcomePageHeading = null; /** * The text for homepage startpage body */ @ApiMember(Description="The text for homepage startpage body") public String WelcomePageBody = null; /** * The text for homepage about us page heading */ @ApiMember(Description="The text for homepage about us page heading") public String AboutUsPageHeading = null; /** * The text for homepage about us page body */ @ApiMember(Description="The text for homepage about us page body") public String AboutUsPageBody = null; /** * The startpage image url */ @ApiMember(Description="The startpage image url") public Uri ImageUrl = null; /** * The template for the homepage */ @ApiMember(Description="The template for the homepage") public Integer HomePageTemplateId = null; /** * Show rating on the page */ @ApiMember(Description="Show rating on the page") public Boolean ShowRating = null; /** * Enable the BokaMera Homepage */ @ApiMember(Description="Enable the BokaMera Homepage") public Boolean EnableHomepage = null; /** * The hero section style for the homepage */ @ApiMember(Description="The hero section style for the homepage") public Integer HeroSectionStyleId = null; public UUID getCompanyId() { return CompanyId; } public UpdateHomepageSettings setCompanyId(UUID value) { this.CompanyId = value; return this; } public String getHomepageHeading() { return HomepageHeading; } public UpdateHomepageSettings setHomepageHeading(String value) { this.HomepageHeading = value; return this; } public String getWelcomePageHeading() { return WelcomePageHeading; } public UpdateHomepageSettings setWelcomePageHeading(String value) { this.WelcomePageHeading = value; return this; } public String getWelcomePageBody() { return WelcomePageBody; } public UpdateHomepageSettings setWelcomePageBody(String value) { this.WelcomePageBody = value; return this; } public String getAboutUsPageHeading() { return AboutUsPageHeading; } public UpdateHomepageSettings setAboutUsPageHeading(String value) { this.AboutUsPageHeading = value; return this; } public String getAboutUsPageBody() { return AboutUsPageBody; } public UpdateHomepageSettings setAboutUsPageBody(String value) { this.AboutUsPageBody = value; return this; } public Uri getImageUrl() { return ImageUrl; } public UpdateHomepageSettings setImageUrl(Uri value) { this.ImageUrl = value; return this; } public Integer getHomePageTemplateId() { return HomePageTemplateId; } public UpdateHomepageSettings setHomePageTemplateId(Integer value) { this.HomePageTemplateId = value; return this; } public Boolean isShowRating() { return ShowRating; } public UpdateHomepageSettings setShowRating(Boolean value) { this.ShowRating = value; return this; } public Boolean isEnableHomepage() { return EnableHomepage; } public UpdateHomepageSettings setEnableHomepage(Boolean value) { this.EnableHomepage = value; return this; } public Integer getHeroSectionStyleId() { return HeroSectionStyleId; } public UpdateHomepageSettings setHeroSectionStyleId(Integer value) { this.HeroSectionStyleId = value; return this; } private static Object responseType = HomepageSettingsQueryResponse.class; public Object getResponseType() { return responseType; } } public static class HomepageSettingsQueryResponse { /** * The company id */ @ApiMember(Description="The company id") public UUID CompanyId = null; /** * The text for homepage heading */ @ApiMember(Description="The text for homepage heading") public String HomepageHeading = null; /** * The text for homepage startpage heading */ @ApiMember(Description="The text for homepage startpage heading") public String WelcomePageHeading = null; /** * The text for homepage startpage body */ @ApiMember(Description="The text for homepage startpage body") public String WelcomePageBody = null; /** * The text for homepage about us page heading */ @ApiMember(Description="The text for homepage about us page heading") public String AboutUsPageHeading = null; /** * The text for homepage about us page body */ @ApiMember(Description="The text for homepage about us page body") public String AboutUsPageBody = null; /** * The startpage image url */ @ApiMember(Description="The startpage image url") public Uri ImageUrl = null; /** * The template for the homepage */ @ApiMember(Description="The template for the homepage") public Integer HomePageTemplateId = null; /** * The hero section style for the homepage */ @ApiMember(Description="The hero section style for the homepage") public Integer HeroSectionStyleId = null; /** * Show rating on the page */ @ApiMember(Description="Show rating on the page") public Boolean ShowRating = null; /** * Enable the BokaMera Homepage */ @ApiMember(Description="Enable the BokaMera Homepage") public Boolean EnableHomepage = null; /** * Will show when the homepage settings was created, note it will only be shown if your logged in as admin for the company. */ @ApiMember(DataType="datetime", Description="Will show when the homepage settings was created, note it will only be shown if your logged in as admin for the company.") public Date Updated = null; /** * Will show when the homepage settings was updated, note it will only be shown if your logged in as admin for the company. */ @ApiMember(DataType="datetime", Description="Will show when the homepage settings was updated, note it will only be shown if your logged in as admin for the company.") public Date Created = null; /** * The homepage templates options to select from */ @ApiMember(DataType="boolean", Description="The homepage templates options to select from", ParameterType="query") public ArrayList HomePageTemplateOptions = null; /** * The homepage hero section style options to select from */ @ApiMember(DataType="boolean", Description="The homepage hero section style options to select from", ParameterType="query") public ArrayList HomepageHeroSectionStyleOptions = null; public UUID getCompanyId() { return CompanyId; } public HomepageSettingsQueryResponse setCompanyId(UUID value) { this.CompanyId = value; return this; } public String getHomepageHeading() { return HomepageHeading; } public HomepageSettingsQueryResponse setHomepageHeading(String value) { this.HomepageHeading = value; return this; } public String getWelcomePageHeading() { return WelcomePageHeading; } public HomepageSettingsQueryResponse setWelcomePageHeading(String value) { this.WelcomePageHeading = value; return this; } public String getWelcomePageBody() { return WelcomePageBody; } public HomepageSettingsQueryResponse setWelcomePageBody(String value) { this.WelcomePageBody = value; return this; } public String getAboutUsPageHeading() { return AboutUsPageHeading; } public HomepageSettingsQueryResponse setAboutUsPageHeading(String value) { this.AboutUsPageHeading = value; return this; } public String getAboutUsPageBody() { return AboutUsPageBody; } public HomepageSettingsQueryResponse setAboutUsPageBody(String value) { this.AboutUsPageBody = value; return this; } public Uri getImageUrl() { return ImageUrl; } public HomepageSettingsQueryResponse setImageUrl(Uri value) { this.ImageUrl = value; return this; } public Integer getHomePageTemplateId() { return HomePageTemplateId; } public HomepageSettingsQueryResponse setHomePageTemplateId(Integer value) { this.HomePageTemplateId = value; return this; } public Integer getHeroSectionStyleId() { return HeroSectionStyleId; } public HomepageSettingsQueryResponse setHeroSectionStyleId(Integer value) { this.HeroSectionStyleId = value; return this; } public Boolean isShowRating() { return ShowRating; } public HomepageSettingsQueryResponse setShowRating(Boolean value) { this.ShowRating = value; return this; } public Boolean isEnableHomepage() { return EnableHomepage; } public HomepageSettingsQueryResponse setEnableHomepage(Boolean value) { this.EnableHomepage = value; return this; } public Date getUpdated() { return Updated; } public HomepageSettingsQueryResponse setUpdated(Date value) { this.Updated = value; return this; } public Date getCreated() { return Created; } public HomepageSettingsQueryResponse setCreated(Date value) { this.Created = value; return this; } public ArrayList getHomePageTemplateOptions() { return HomePageTemplateOptions; } public HomepageSettingsQueryResponse setHomePageTemplateOptions(ArrayList value) { this.HomePageTemplateOptions = value; return this; } public ArrayList getHomepageHeroSectionStyleOptions() { return HomepageHeroSectionStyleOptions; } public HomepageSettingsQueryResponse setHomepageHeroSectionStyleOptions(ArrayList value) { this.HomepageHeroSectionStyleOptions = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } public static class HomepageTemplateResponse { /** * The template id */ @ApiMember(Description="The template id") public Integer Id = null; /** * The template name */ @ApiMember(Description="The template name") public String Name = null; /** * The template description */ @ApiMember(Description="The template description") public String Description = null; /** * The template image url */ @ApiMember(Description="The template image url") public Uri ImageUrl = null; public Integer getId() { return Id; } public HomepageTemplateResponse setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public HomepageTemplateResponse setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public HomepageTemplateResponse setDescription(String value) { this.Description = value; return this; } public Uri getImageUrl() { return ImageUrl; } public HomepageTemplateResponse setImageUrl(Uri value) { this.ImageUrl = value; return this; } } public static class HomepageHeroSectionStyleResponse { /** * The hero section style id */ @ApiMember(Description="The hero section style id") public Integer Id = null; /** * The hero section style name */ @ApiMember(Description="The hero section style name") public String Name = null; /** * The hero section style description */ @ApiMember(Description="The hero section style description") public String Description = null; public Integer getId() { return Id; } public HomepageHeroSectionStyleResponse setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public HomepageHeroSectionStyleResponse setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public HomepageHeroSectionStyleResponse setDescription(String value) { this.Description = value; return this; } } }