/* Options: Date: 2026-04-04 01:23:38 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetGSTRate.* //ExcludeTypes: //InitializeCollections: False //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.* /** * Gets the GST Rate for a particualr licensee */ @Route(Path="/gstrate") @Api(Description="Gets the GST Rate for a particualr licensee") open class GetGSTRate : IReturn { open var LicenseeId:UUID? = null companion object { private val responseType = GetGSTRateResponse::class.java } override fun getResponseType(): Any? = GetGSTRate.responseType } @ApiResponse(Description="GST Rate") open class GetGSTRateResponse { open var GSTRate:String? = null }