/* Options: Date: 2025-10-27 21:36:47 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: ConfigurationChannelsEdit.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class ConfigurationChannelsEditResponse implements IConvertible { // @DataMember(Order=1) int? Id; // @DataMember(Order=2) int? ConfigurationsId; // @DataMember(Order=3) int? ChannelsId; // @DataMember(Order=4) int? TemplatesId; // @DataMember(Order=6) ResponseStatus? ResponseStatus; ConfigurationChannelsEditResponse({this.Id,this.ConfigurationsId,this.ChannelsId,this.TemplatesId,this.ResponseStatus}); ConfigurationChannelsEditResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; ConfigurationsId = json['ConfigurationsId']; ChannelsId = json['ChannelsId']; TemplatesId = json['TemplatesId']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'Id': Id, 'ConfigurationsId': ConfigurationsId, 'ChannelsId': ChannelsId, 'TemplatesId': TemplatesId, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "ConfigurationChannelsEditResponse"; TypeContext? context = _ctx; } // @Route("/configuration_channels/{Id}", "PUT") // @DataContract class ConfigurationChannelsEdit implements IReturn, IConvertible, IPut { // @DataMember(Order=1) // @Validate(Validator="NotNull") int? Id; // @DataMember(Order=2) // @Validate(Validator="NotNull") int? ConfigurationsId; // @DataMember(Order=3) // @Validate(Validator="NotNull") int? ChannelsId; // @DataMember(Order=4) // @Validate(Validator="NotNull") int? TemplatesId; ConfigurationChannelsEdit({this.Id,this.ConfigurationsId,this.ChannelsId,this.TemplatesId}); ConfigurationChannelsEdit.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; ConfigurationsId = json['ConfigurationsId']; ChannelsId = json['ChannelsId']; TemplatesId = json['TemplatesId']; return this; } Map toJson() => { 'Id': Id, 'ConfigurationsId': ConfigurationsId, 'ChannelsId': ChannelsId, 'TemplatesId': TemplatesId }; createResponse() => ConfigurationChannelsEditResponse(); getResponseTypeName() => "ConfigurationChannelsEditResponse"; getTypeName() => "ConfigurationChannelsEdit"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'ConfigurationChannelsEditResponse': TypeInfo(TypeOf.Class, create:() => ConfigurationChannelsEditResponse()), 'ConfigurationChannelsEdit': TypeInfo(TypeOf.Class, create:() => ConfigurationChannelsEdit()), });