/* Options: Date: 2026-04-04 06:46:52 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetGSTRate.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @ApiResponse(Description="GST Rate") export class GetGSTRateResponse { public GSTRate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Gets the GST Rate for a particualr licensee */ // @Route("/gstrate") // @Api(Description="Gets the GST Rate for a particualr licensee") export class GetGSTRate implements IReturn { public LicenseeId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetGSTRate'; } public getMethod() { return 'GET'; } public createResponse() { return new GetGSTRateResponse(); } }