/* Options: Date: 2025-09-14 06:46:14 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-platform-apisubscription.azurewebsites.net/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDimensions.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class GetDimensionsResponse implements IConvertible { String? DimensionsXml; GetDimensionsResponse({this.DimensionsXml}); GetDimensionsResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { DimensionsXml = json['DimensionsXml']; return this; } Map toJson() => { 'DimensionsXml': DimensionsXml }; getTypeName() => "GetDimensionsResponse"; TypeContext? context = _ctx; } // @Route("/informationondimensions") class GetDimensions implements IReturn, IConvertible, IGet { String? LicenseeId; String? RecordStatus; GetDimensions({this.LicenseeId,this.RecordStatus}); GetDimensions.fromJson(Map json) { fromMap(json); } fromMap(Map json) { LicenseeId = json['LicenseeId']; RecordStatus = json['RecordStatus']; return this; } Map toJson() => { 'LicenseeId': LicenseeId, 'RecordStatus': RecordStatus }; createResponse() => GetDimensionsResponse(); getResponseTypeName() => "GetDimensionsResponse"; getTypeName() => "GetDimensions"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'production_eros_platform_apisubscription.azurewebsites.net', types: { 'GetDimensionsResponse': TypeInfo(TypeOf.Class, create:() => GetDimensionsResponse()), 'GetDimensions': TypeInfo(TypeOf.Class, create:() => GetDimensions()), });