/* Options: Date: 2025-12-06 07:05:12 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: GetAllWearPriceProfileRequest.* //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="/wear_price_profile/get_all", Verbs="GET") public static class GetAllWearPriceProfileRequest implements IReturn, IGet { private static Object responseType = GetAllWearPriceProfileResponse.class; public Object getResponseType() { return responseType; } } public static class GetAllWearPriceProfileResponse { public ArrayList wearPriceProfile = new ArrayList(); public ArrayList getWearPriceProfile() { return wearPriceProfile; } public GetAllWearPriceProfileResponse setWearPriceProfile(ArrayList value) { this.wearPriceProfile = value; return this; } } public static class BackofficeWearPriceProfileDto { public String label = null; public String slug = null; public Integer position = null; public String getLabel() { return label; } public BackofficeWearPriceProfileDto setLabel(String value) { this.label = value; return this; } public String getSlug() { return slug; } public BackofficeWearPriceProfileDto setSlug(String value) { this.slug = value; return this; } public Integer getPosition() { return position; } public BackofficeWearPriceProfileDto setPosition(Integer value) { this.position = value; return this; } } }