/* Options: Date: 2025-12-06 07:00:20 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //Package: //GlobalNamespace: BackofficeApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateBrandRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class BackofficeApi { @Route(Path="/brand/update", Verbs="PUT") public static class UpdateBrandRequest implements IReturn, IPut { public Long id = null; public Long definedByRootCategoryId = null; public String name = null; public Boolean selectedForEditingInBackoffice = null; public Long getId() { return id; } public UpdateBrandRequest setId(Long value) { this.id = value; return this; } public Long getDefinedByRootCategoryId() { return definedByRootCategoryId; } public UpdateBrandRequest setDefinedByRootCategoryId(Long value) { this.definedByRootCategoryId = value; return this; } public String getName() { return name; } public UpdateBrandRequest setName(String value) { this.name = value; return this; } public Boolean isSelectedForEditingInBackoffice() { return selectedForEditingInBackoffice; } public UpdateBrandRequest setSelectedForEditingInBackoffice(Boolean value) { this.selectedForEditingInBackoffice = value; return this; } private static Object responseType = UpdateBrandResponse.class; public Object getResponseType() { return responseType; } } public static class UpdateBrandResponse { public BackofficeBrandDto brand = null; public BackofficeBrandDto getBrand() { return brand; } public UpdateBrandResponse setBrand(BackofficeBrandDto value) { this.brand = value; return this; } } public static class BackofficeBrandDto { public Long id = null; public Long definedByRootCategoryId = null; public String name = null; public Boolean selectedForEditingInBackoffice = null; public Long getId() { return id; } public BackofficeBrandDto setId(Long value) { this.id = value; return this; } public Long getDefinedByRootCategoryId() { return definedByRootCategoryId; } public BackofficeBrandDto setDefinedByRootCategoryId(Long value) { this.definedByRootCategoryId = value; return this; } public String getName() { return name; } public BackofficeBrandDto setName(String value) { this.name = value; return this; } public Boolean isSelectedForEditingInBackoffice() { return selectedForEditingInBackoffice; } public BackofficeBrandDto setSelectedForEditingInBackoffice(Boolean value) { this.selectedForEditingInBackoffice = value; return this; } } }