/* Options: Date: 2025-05-10 05:09:37 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://active-ewebservice.biz/aeservices30/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EditContactRecordRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @DataContract class BaseRequest implements IConvertible { /** * This is your AIM API Key provided by Tri-Tech */ // @DataMember // @ApiMember(DataType="string", Description="This is your AIM API Key provided by Tri-Tech", IsRequired=true, Name="ApiKey", ParameterType="header") String? ApiKey; // @DataMember // @ApiMember(DataType="string", Name="OAuthToken", ParameterType="header") String? OAuthToken; BaseRequest({this.ApiKey,this.OAuthToken}); BaseRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ApiKey = json['ApiKey']; OAuthToken = json['OAuthToken']; return this; } Map toJson() => { 'ApiKey': ApiKey, 'OAuthToken': OAuthToken }; getTypeName() => "BaseRequest"; TypeContext? context = _ctx; } // @DataContract class BaseSecureRequest extends BaseRequest implements IConvertible { /** * */ // @DataMember // @ApiMember(DataType="string", Description="", Name="Token", ParameterType="Header") String? Token; /** * */ // @DataMember // @ApiMember(DataType="string", Description="", Name="DeviceId", ParameterType="Header") String? DeviceId; /** * */ // @DataMember // @ApiMember(DataType="string", Description="", IsRequired=true, Name="AppId", ParameterType="Header") String? AppId; BaseSecureRequest({this.Token,this.DeviceId,this.AppId}); BaseSecureRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); Token = json['Token']; DeviceId = json['DeviceId']; AppId = json['AppId']; return this; } Map toJson() => super.toJson()..addAll({ 'Token': Token, 'DeviceId': DeviceId, 'AppId': AppId }); getTypeName() => "BaseSecureRequest"; TypeContext? context = _ctx; } // @DataContract class AttributeValuePair implements IConvertible { // @DataMember String? Name; // @DataMember String? Value; AttributeValuePair({this.Name,this.Value}); AttributeValuePair.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Name = json['Name']; Value = json['Value']; return this; } Map toJson() => { 'Name': Name, 'Value': Value }; getTypeName() => "AttributeValuePair"; TypeContext? context = _ctx; } // @DataContract class FileAttachment implements IConvertible { // @DataMember String? FileName; // @DataMember String? Base64Contents; FileAttachment({this.FileName,this.Base64Contents}); FileAttachment.fromJson(Map json) { fromMap(json); } fromMap(Map json) { FileName = json['FileName']; Base64Contents = json['Base64Contents']; return this; } Map toJson() => { 'FileName': FileName, 'Base64Contents': Base64Contents }; getTypeName() => "FileAttachment"; TypeContext? context = _ctx; } // @DataContract class BaseResponse implements IConvertible { /** * */ // @DataMember // @ApiMember(DataType="BaseResponseResult", Description="", Name="Status", ParameterType="body") BaseResponseResult? Status; BaseResponse({this.Status}); BaseResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Status = JsonConverters.fromJson(json['Status'],'BaseResponseResult',context!); return this; } Map toJson() => { 'Status': JsonConverters.toJson(Status,'BaseResponseResult',context!) }; getTypeName() => "BaseResponse"; TypeContext? context = _ctx; } // @DataContract class EditContactRecordResponse extends BaseResponse implements IConvertible { EditContactRecordResponse(); EditContactRecordResponse.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); getTypeName() => "EditContactRecordResponse"; TypeContext? context = _ctx; } /** * EditContactRecord web service. */ // @Route("/EditContactRecord", "POST") // @DataContract class EditContactRecordRequest extends BaseSecureRequest implements IReturn, IConvertible, IPost { // @DataMember String? RefNumber; // @DataMember String? Contact; // @DataMember int? CustomerAcct; // @DataMember int? ActionId; // @DataMember DateTime? ActionDate; // @DataMember bool? PopUp; // @DataMember int? TopicId; // @DataMember bool? Closed; // @DataMember DateTime? ClosedDate; // @DataMember int? ColorValue; // @DataMember String? LanID; // @DataMember bool? FormattedNotes; // @DataMember bool? AppendNotes; // @DataMember String? Note1; // @DataMember String? Note2; // @DataMember String? Note3; // @DataMember List? Attributes; // @DataMember List? NewAttachments; EditContactRecordRequest({this.RefNumber,this.Contact,this.CustomerAcct,this.ActionId,this.ActionDate,this.PopUp,this.TopicId,this.Closed,this.ClosedDate,this.ColorValue,this.LanID,this.FormattedNotes,this.AppendNotes,this.Note1,this.Note2,this.Note3,this.Attributes,this.NewAttachments}); EditContactRecordRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); RefNumber = json['RefNumber']; Contact = json['Contact']; CustomerAcct = json['CustomerAcct']; ActionId = json['ActionId']; ActionDate = JsonConverters.fromJson(json['ActionDate'],'DateTime',context!); PopUp = json['PopUp']; TopicId = json['TopicId']; Closed = json['Closed']; ClosedDate = JsonConverters.fromJson(json['ClosedDate'],'DateTime',context!); ColorValue = json['ColorValue']; LanID = json['LanID']; FormattedNotes = json['FormattedNotes']; AppendNotes = json['AppendNotes']; Note1 = json['Note1']; Note2 = json['Note2']; Note3 = json['Note3']; Attributes = JsonConverters.fromJson(json['Attributes'],'List',context!); NewAttachments = JsonConverters.fromJson(json['NewAttachments'],'List',context!); return this; } Map toJson() => super.toJson()..addAll({ 'RefNumber': RefNumber, 'Contact': Contact, 'CustomerAcct': CustomerAcct, 'ActionId': ActionId, 'ActionDate': JsonConverters.toJson(ActionDate,'DateTime',context!), 'PopUp': PopUp, 'TopicId': TopicId, 'Closed': Closed, 'ClosedDate': JsonConverters.toJson(ClosedDate,'DateTime',context!), 'ColorValue': ColorValue, 'LanID': LanID, 'FormattedNotes': FormattedNotes, 'AppendNotes': AppendNotes, 'Note1': Note1, 'Note2': Note2, 'Note3': Note3, 'Attributes': JsonConverters.toJson(Attributes,'List',context!), 'NewAttachments': JsonConverters.toJson(NewAttachments,'List',context!) }); createResponse() => EditContactRecordResponse(); getResponseTypeName() => "EditContactRecordResponse"; getTypeName() => "EditContactRecordRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'active_ewebservice.biz', types: { 'BaseRequest': TypeInfo(TypeOf.Class, create:() => BaseRequest()), 'BaseSecureRequest': TypeInfo(TypeOf.Class, create:() => BaseSecureRequest()), 'AttributeValuePair': TypeInfo(TypeOf.Class, create:() => AttributeValuePair()), 'FileAttachment': TypeInfo(TypeOf.Class, create:() => FileAttachment()), 'BaseResponse': TypeInfo(TypeOf.Class, create:() => BaseResponse()), 'BaseResponseResult': TypeInfo(TypeOf.Class, create:() => BaseResponseResult()), 'EditContactRecordResponse': TypeInfo(TypeOf.Class, create:() => EditContactRecordResponse()), 'EditContactRecordRequest': TypeInfo(TypeOf.Class, create:() => EditContactRecordRequest()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'List': TypeInfo(TypeOf.Class, create:() => []), });