/* Options: Date: 2025-12-06 07:49:26 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: MallRemovePlaceRequest.* //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_place", Verbs="POST") public static class MallRemovePlaceRequest implements IReturn, IPost, IHasPlaceIdOrMallId { @Validate(Validator="NotNull") public Long mallId = null; @Validate(Validator="NotNull") public Long placeId = null; public Long getMallId() { return mallId; } public MallRemovePlaceRequest setMallId(Long value) { this.mallId = value; return this; } public Long getPlaceId() { return placeId; } public MallRemovePlaceRequest setPlaceId(Long value) { this.placeId = value; return this; } private static Object responseType = MallRemovePlaceResponse.class; public Object getResponseType() { return responseType; } } public static class MallRemovePlaceResponse { public Long mallId = null; public Long placeId = null; public Long getMallId() { return mallId; } public MallRemovePlaceResponse setMallId(Long value) { this.mallId = value; return this; } public Long getPlaceId() { return placeId; } public MallRemovePlaceResponse setPlaceId(Long value) { this.placeId = value; return this; } } public static interface IHasPlaceIdOrMallId { public Long placeId = null; public Long mallId = null; } }