/* Options: Date: 2025-12-06 07:05:05 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //GlobalNamespace: BusinessApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: MallGetOtherServicesRequest.* //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 BusinessApi { @Route(Path="/mall/other-services", Verbs="GET") public static class MallGetOtherServicesRequest implements IReturn, IGet, IHasMallId { public Long mallId = null; public Long getMallId() { return mallId; } public MallGetOtherServicesRequest setMallId(Long value) { this.mallId = value; return this; } private static Object responseType = MallGetOtherServicesResponse.class; public Object getResponseType() { return responseType; } } public static class MallGetOtherServicesResponse { public ArrayList otherServices = new ArrayList(); public ArrayList getOtherServices() { return otherServices; } public MallGetOtherServicesResponse setOtherServices(ArrayList value) { this.otherServices = value; return this; } } public static interface IHasMallId { public Long mallId = null; } public static class MallOtherServiceDto { public Long id = null; public String serviceName = null; public String floor = null; public Long getId() { return id; } public MallOtherServiceDto setId(Long value) { this.id = value; return this; } public String getServiceName() { return serviceName; } public MallOtherServiceDto setServiceName(String value) { this.serviceName = value; return this; } public String getFloor() { return floor; } public MallOtherServiceDto setFloor(String value) { this.floor = value; return this; } } }