/* Options: Date: 2026-04-04 02:54:54 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetGSTRate.* //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 dtos { /** * Gets the GST Rate for a particualr licensee */ @Route(Path="/gstrate") @Api(Description="Gets the GST Rate for a particualr licensee") public static class GetGSTRate implements IReturn { public UUID LicenseeId = null; public UUID getLicenseeId() { return LicenseeId; } public GetGSTRate setLicenseeId(UUID value) { this.LicenseeId = value; return this; } private static Object responseType = GetGSTRateResponse.class; public Object getResponseType() { return responseType; } } @ApiResponse(Description="GST Rate") public static class GetGSTRateResponse { public String GSTRate = null; public String getGstRate() { return GSTRate; } public GetGSTRateResponse setGstRate(String value) { this.GSTRate = value; return this; } } }