/* Options: Date: 2024-12-23 11:37:11 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //Package: //GlobalNamespace: ConsumerApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UnfollowRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class ConsumerApi { @Route(Path="/place/Unfollow", Verbs="POST") public static class UnfollowRequest implements IReturn, IPost { public Long placeId = null; public Long getPlaceId() { return placeId; } public UnfollowRequest setPlaceId(Long value) { this.placeId = value; return this; } private static Object responseType = UnfollowResponse.class; public Object getResponseType() { return responseType; } } public static class UnfollowResponse { public Boolean deleted = null; public Boolean isDeleted() { return deleted; } public UnfollowResponse setDeleted(Boolean value) { this.deleted = value; return this; } } }