/* Options: Date: 2026-04-04 01:20:55 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetGSTRate.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @ApiResponse(Description="GST Rate") class GetGSTRateResponse implements IConvertible { String? GSTRate; GetGSTRateResponse({this.GSTRate}); GetGSTRateResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { GSTRate = json['GSTRate']; return this; } Map toJson() => { 'GSTRate': GSTRate }; getTypeName() => "GetGSTRateResponse"; TypeContext? context = _ctx; } /** * Gets the GST Rate for a particualr licensee */ // @Route("/gstrate") // @Api(Description="Gets the GST Rate for a particualr licensee") class GetGSTRate implements IReturn, IConvertible, IGet { String? LicenseeId; GetGSTRate({this.LicenseeId}); GetGSTRate.fromJson(Map json) { fromMap(json); } fromMap(Map json) { LicenseeId = json['LicenseeId']; return this; } Map toJson() => { 'LicenseeId': LicenseeId }; createResponse() => GetGSTRateResponse(); getResponseTypeName() => "GetGSTRateResponse"; getTypeName() => "GetGSTRate"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'pfapi.pstpf.com.au', types: { 'GetGSTRateResponse': TypeInfo(TypeOf.Class, create:() => GetGSTRateResponse()), 'GetGSTRate': TypeInfo(TypeOf.Class, create:() => GetGSTRate()), });