/* Options: Date: 2025-12-06 07:49:22 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: GetAllParkingRequest.* //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="/parking/get_all", Verbs="GET") public static class GetAllParkingRequest implements IReturn, IGet { private static Object responseType = GetAllParkingResponse.class; public Object getResponseType() { return responseType; } } public static class GetAllParkingResponse { public ArrayList parking = new ArrayList(); public ArrayList getParking() { return parking; } public GetAllParkingResponse setParking(ArrayList value) { this.parking = value; return this; } } public static enum Parking { StreetParking, ParkingGarageNearby; } public static class ParkingDto { public String label = null; public Parking slug = null; public String getLabel() { return label; } public ParkingDto setLabel(String value) { this.label = value; return this; } public Parking getSlug() { return slug; } public ParkingDto setSlug(Parking value) { this.slug = value; return this; } } }