/* Options: Date: 2025-12-06 07:05:21 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: PromoteCustomBrandToGlobalBrandRequest.* //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/promote_custom_to_global", Verbs="POST") public static class PromoteCustomBrandToGlobalBrandRequest implements IReturn, IPost { public Long placeCustomBrandId = null; public String brandName = null; public Long brandId = null; public Long getPlaceCustomBrandId() { return placeCustomBrandId; } public PromoteCustomBrandToGlobalBrandRequest setPlaceCustomBrandId(Long value) { this.placeCustomBrandId = value; return this; } public String getBrandName() { return brandName; } public PromoteCustomBrandToGlobalBrandRequest setBrandName(String value) { this.brandName = value; return this; } public Long getBrandId() { return brandId; } public PromoteCustomBrandToGlobalBrandRequest setBrandId(Long value) { this.brandId = value; return this; } private static Object responseType = PromoteCustomBrandToGlobalBrandResponse.class; public Object getResponseType() { return responseType; } } public static class PromoteCustomBrandToGlobalBrandResponse { public Long promotedGlobalBrandId = null; public Long getPromotedGlobalBrandId() { return promotedGlobalBrandId; } public PromoteCustomBrandToGlobalBrandResponse setPromotedGlobalBrandId(Long value) { this.promotedGlobalBrandId = value; return this; } } }