/* Options: Date: 2025-12-06 07:49:29 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: MallRemoveOtherServiceRequest.* //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/remove_other_service", Verbs="DELETE") public static class MallRemoveOtherServiceRequest implements IReturn, IDelete, IHasMallOtherServiceId { public Long mallOtherServiceId = null; public Long getMallOtherServiceId() { return mallOtherServiceId; } public MallRemoveOtherServiceRequest setMallOtherServiceId(Long value) { this.mallOtherServiceId = value; return this; } private static Object responseType = MallRemoveOtherServiceResponse.class; public Object getResponseType() { return responseType; } } public static class MallRemoveOtherServiceResponse { public MallOtherServiceDto deleted = null; public MallOtherServiceDto getDeleted() { return deleted; } public MallRemoveOtherServiceResponse setDeleted(MallOtherServiceDto value) { this.deleted = value; return this; } } public static interface IHasMallOtherServiceId { public Long mallOtherServiceId = 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; } } }