/* Options: Date: 2025-05-06 21:36:53 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-consumer-api.brovs.com //Package: //GlobalNamespace: ConsumerApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: PlacePokeRequest.* //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 ConsumerApi { @Route(Path="/place/PlacePoke", Verbs="POST") public static class PlacePokeRequest implements IReturn, IPost { public UUID placeGuid = null; public UUID getPlaceGuid() { return placeGuid; } public PlacePokeRequest setPlaceGuid(UUID value) { this.placeGuid = value; return this; } private static Object responseType = PlacePokeResponse.class; public Object getResponseType() { return responseType; } } public static class PlacePokeResponse { public Boolean success = null; public Boolean isSuccess() { return success; } public PlacePokeResponse setSuccess(Boolean value) { this.success = value; return this; } } }