File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/SocketLabs/InjectionApi/Core Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ internal virtual MessageJson GenerateBaseMessageJson(IMessageBase message)
9393 CustomHeaders = PopulateCustomHeaders ( message . CustomHeaders ) ,
9494 From = new AddressJson ( message . From . Email , message . From . FriendlyName ) ,
9595 Attachments = PopulateList ( message . Attachments ) ,
96- Metadata = PopulateMetadata ( message . Metadata ) ,
96+ Meta = PopulateMetadata ( message . Metadata ) ,
9797 Tags = PopulateTags ( message . Tags )
9898 } ;
9999
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public MessageJson()
1919 Bcc = new List < AddressJson > ( ) ;
2020 MergeData = new MergeDataJson ( ) ;
2121 Attachments = new List < AttachmentJson > ( ) ;
22- Metadata = new List < MetadataHeaderJson > ( ) ;
22+ Meta = new List < MetadataHeaderJson > ( ) ;
2323 Tags = new List < string > ( ) ;
2424 }
2525
@@ -107,7 +107,7 @@ public MessageJson()
107107 /// <summary>
108108 /// A list of metadata headers added to the message.
109109 /// </summary>
110- public List < MetadataHeaderJson > Metadata { get ; set ; }
110+ public List < MetadataHeaderJson > Meta { get ; set ; }
111111
112112 /// <summary>
113113 /// A list of tag headers added to the message.
You can’t perform that action at this time.
0 commit comments