/* Options: Date: 2025-08-05 02:00:50 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ControlDataMessage.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/personalizations/render", "GET") class ControlDataMessage implements IConvertible, IGet { String? PageNodeId; String? PageDataId; List? Controls; String? Url; String? PageNodeKey; String? CorrelationId; ControlDataMessage({this.PageNodeId,this.PageDataId,this.Controls,this.Url,this.PageNodeKey,this.CorrelationId}); ControlDataMessage.fromJson(Map json) { fromMap(json); } fromMap(Map json) { PageNodeId = json['PageNodeId']; PageDataId = json['PageDataId']; Controls = JsonConverters.fromJson(json['Controls'],'List',context!); Url = json['Url']; PageNodeKey = json['PageNodeKey']; CorrelationId = json['CorrelationId']; return this; } Map toJson() => { 'PageNodeId': PageNodeId, 'PageDataId': PageDataId, 'Controls': JsonConverters.toJson(Controls,'List',context!), 'Url': Url, 'PageNodeKey': PageNodeKey, 'CorrelationId': CorrelationId }; getTypeName() => "ControlDataMessage"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'ControlDataMessage': TypeInfo(TypeOf.Class, create:() => ControlDataMessage()), });