/* Options: Date: 2025-10-28 04:44:56 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: MessageLinksById.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class MessageLinksByIdResponse implements IConvertible { // @DataMember(Order=1) int? Id; // @DataMember(Order=12) ResponseStatus? ResponseStatus; MessageLinksByIdResponse({this.Id,this.ResponseStatus}); MessageLinksByIdResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'Id': Id, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "MessageLinksByIdResponse"; TypeContext? context = _ctx; } // @Route("/message_links/{Id}", "GET") // @DataContract class MessageLinksById implements IReturn, IConvertible, IGet { // @DataMember(Order=1) // @Validate(Validator="NotNull") int? Id; MessageLinksById({this.Id}); MessageLinksById.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; return this; } Map toJson() => { 'Id': Id }; createResponse() => MessageLinksByIdResponse(); getResponseTypeName() => "MessageLinksByIdResponse"; getTypeName() => "MessageLinksById"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'MessageLinksByIdResponse': TypeInfo(TypeOf.Class, create:() => MessageLinksByIdResponse()), 'MessageLinksById': TypeInfo(TypeOf.Class, create:() => MessageLinksById()), });