/* Options: Date: 2025-10-28 04:14:16 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: ChannelSmsMessagesById.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class ChannelSmsMessagesByIdResponse implements IConvertible { // @DataMember(Order=1) int? Id; // @DataMember(Order=14) ResponseStatus? ResponseStatus; ChannelSmsMessagesByIdResponse({this.Id,this.ResponseStatus}); ChannelSmsMessagesByIdResponse.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() => "ChannelSmsMessagesByIdResponse"; TypeContext? context = _ctx; } // @Route("/channel_sms_messages/{Id}", "GET") // @DataContract class ChannelSmsMessagesById implements IReturn, IConvertible, IGet { // @DataMember(Order=1) // @Validate(Validator="NotNull") int? Id; ChannelSmsMessagesById({this.Id}); ChannelSmsMessagesById.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; return this; } Map toJson() => { 'Id': Id }; createResponse() => ChannelSmsMessagesByIdResponse(); getResponseTypeName() => "ChannelSmsMessagesByIdResponse"; getTypeName() => "ChannelSmsMessagesById"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'ChannelSmsMessagesByIdResponse': TypeInfo(TypeOf.Class, create:() => ChannelSmsMessagesByIdResponse()), 'ChannelSmsMessagesById': TypeInfo(TypeOf.Class, create:() => ChannelSmsMessagesById()), });