/* Options: Date: 2026-04-04 01:18:51 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: GetSuiteDataForLicensee.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @ApiResponse(Description="Suite Appliance Data") class GetSuiteDataResponse implements IConvertible { String? SuiteApplianceLicenseeId; String? DomainName; String? SkinName; String? LicenseeConnectionId; String? LicenseeContactId; String? LicenseeContactName; bool? IsBrandedURL; ResponseStatus? ResponseStatus; GetSuiteDataResponse({this.SuiteApplianceLicenseeId,this.DomainName,this.SkinName,this.LicenseeConnectionId,this.LicenseeContactId,this.LicenseeContactName,this.IsBrandedURL,this.ResponseStatus}); GetSuiteDataResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { SuiteApplianceLicenseeId = json['SuiteApplianceLicenseeId']; DomainName = json['DomainName']; SkinName = json['SkinName']; LicenseeConnectionId = json['LicenseeConnectionId']; LicenseeContactId = json['LicenseeContactId']; LicenseeContactName = json['LicenseeContactName']; IsBrandedURL = json['IsBrandedURL']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'SuiteApplianceLicenseeId': SuiteApplianceLicenseeId, 'DomainName': DomainName, 'SkinName': SkinName, 'LicenseeConnectionId': LicenseeConnectionId, 'LicenseeContactId': LicenseeContactId, 'LicenseeContactName': LicenseeContactName, 'IsBrandedURL': IsBrandedURL, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "GetSuiteDataResponse"; TypeContext? context = _ctx; } /** * Gets the suite data for a particular licensee */ // @Route("/suitedata") // @Api(Description="Gets the suite data for a particular licensee") class GetSuiteDataForLicensee implements IReturn, IConvertible, IGet { /** * The suite id */ // @ApiMember(Description="The suite id", Name="Suite Id") String? SuiteId; /** * The id of the licensee */ // @ApiMember(Description="The id of the licensee", Name="LicenseeId") String? LicenseeId; GetSuiteDataForLicensee({this.SuiteId,this.LicenseeId}); GetSuiteDataForLicensee.fromJson(Map json) { fromMap(json); } fromMap(Map json) { SuiteId = json['SuiteId']; LicenseeId = json['LicenseeId']; return this; } Map toJson() => { 'SuiteId': SuiteId, 'LicenseeId': LicenseeId }; createResponse() => GetSuiteDataResponse(); getResponseTypeName() => "GetSuiteDataResponse"; getTypeName() => "GetSuiteDataForLicensee"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'pfapi.pstpf.com.au', types: { 'GetSuiteDataResponse': TypeInfo(TypeOf.Class, create:() => GetSuiteDataResponse()), 'GetSuiteDataForLicensee': TypeInfo(TypeOf.Class, create:() => GetSuiteDataForLicensee()), });