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)
93
93
CustomHeaders = PopulateCustomHeaders ( message . CustomHeaders ) ,
94
94
From = new AddressJson ( message . From . Email , message . From . FriendlyName ) ,
95
95
Attachments = PopulateList ( message . Attachments ) ,
96
- Metadata = PopulateMetadata ( message . Metadata ) ,
96
+ Meta = PopulateMetadata ( message . Metadata ) ,
97
97
Tags = PopulateTags ( message . Tags )
98
98
} ;
99
99
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public MessageJson()
19
19
Bcc = new List < AddressJson > ( ) ;
20
20
MergeData = new MergeDataJson ( ) ;
21
21
Attachments = new List < AttachmentJson > ( ) ;
22
- Metadata = new List < MetadataHeaderJson > ( ) ;
22
+ Meta = new List < MetadataHeaderJson > ( ) ;
23
23
Tags = new List < string > ( ) ;
24
24
}
25
25
@@ -107,7 +107,7 @@ public MessageJson()
107
107
/// <summary>
108
108
/// A list of metadata headers added to the message.
109
109
/// </summary>
110
- public List < MetadataHeaderJson > Metadata { get ; set ; }
110
+ public List < MetadataHeaderJson > Meta { get ; set ; }
111
111
112
112
/// <summary>
113
113
/// A list of tag headers added to the message.
You can’t perform that action at this time.
0 commit comments