You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
///<summary> The SID of the Message resource for which the feedback was provided. </summary>
31
+
///<summary> The SID of the Message resource for which to create MessageFeedback. </summary>
32
32
publicstringPathMessageSid{get;}
33
33
34
-
///<summary> The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that will create the resource. </summary>
34
+
///<summary> The SID of the [Account](https://www.twilio.com/docs/iam/api/account) associated with the Message resource for which to create MessageFeedback. </summary>
/// <param name="client"> Client to make requests to Twilio </param>
81
81
/// <returns> Task that resolves to A single instance of Feedback </returns>
@@ -88,9 +88,9 @@ public static async System.Threading.Tasks.Task<FeedbackResource> CreateAsync(Cr
88
88
}
89
89
#endif
90
90
91
-
/// <summary> create </summary>
92
-
/// <param name="pathMessageSid"> The SID of the Message resource for which the feedback was provided. </param>
93
-
/// <param name="pathAccountSid"> The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that will create the resource. </param>
91
+
/// <summary> Create Message Feedback to confirm a tracked user action was performed by the recipient of the associated Message </summary>
92
+
/// <param name="pathMessageSid"> The SID of the Message resource for which to create MessageFeedback. </param>
93
+
/// <param name="pathAccountSid"> The SID of the [Account](https://www.twilio.com/docs/iam/api/account) associated with the Message resource for which to create MessageFeedback. </param>
94
94
/// <param name="outcome"> </param>
95
95
/// <param name="client"> Client to make requests to Twilio </param>
96
96
/// <returns> A single instance of Feedback </returns>
@@ -105,9 +105,9 @@ public static FeedbackResource Create(
105
105
}
106
106
107
107
#if !NET35
108
-
/// <summary> create </summary>
109
-
/// <param name="pathMessageSid"> The SID of the Message resource for which the feedback was provided. </param>
110
-
/// <param name="pathAccountSid"> The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that will create the resource. </param>
108
+
/// <summary> Create Message Feedback to confirm a tracked user action was performed by the recipient of the associated Message </summary>
109
+
/// <param name="pathMessageSid"> The SID of the Message resource for which to create MessageFeedback. </param>
110
+
/// <param name="pathAccountSid"> The SID of the [Account](https://www.twilio.com/docs/iam/api/account) associated with the Message resource for which to create MessageFeedback. </param>
111
111
/// <param name="outcome"> </param>
112
112
/// <param name="client"> Client to make requests to Twilio </param>
113
113
/// <returns> Task that resolves to A single instance of Feedback </returns>
@@ -140,23 +140,23 @@ public static FeedbackResource FromJson(string json)
140
140
}
141
141
142
142
143
-
///<summary> The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the MessageFeedback resource. </summary>
143
+
///<summary> The SID of the [Account](https://www.twilio.com/docs/iam/api/account) associated with this MessageFeedback resource. </summary>
144
144
[JsonProperty("account_sid")]
145
145
publicstringAccountSid{get;privateset;}
146
146
147
-
///<summary> The SID of the Message resource for which the feedback was provided. </summary>
147
+
///<summary> The SID of the Message resource associated with this MessageFeedback resource. </summary>
///<summary> The date and time in GMT that the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format. </summary>
155
+
///<summary> The date and time in GMT when this MessageFeedback resource was created, specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format. </summary>
156
156
[JsonProperty("date_created")]
157
157
publicDateTime?DateCreated{get;privateset;}
158
158
159
-
///<summary> The date and time in GMT that the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format. </summary>
159
+
///<summary> The date and time in GMT when this MessageFeedback resource was last updated, specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format. </summary>
Copy file name to clipboardExpand all lines: src/Twilio/Rest/Api/V2010/Account/MessageOptions.cs
+7
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,9 @@ public class CreateMessageOptions : IOptions<MessageResource>
82
82
///<summary> For [Content Editor/API](https://www.twilio.com/docs/content) only: Key-value pairs of [Template variables](https://www.twilio.com/docs/content/using-variables-with-content-api) and their substitution values. `content_sid` parameter must also be provided. If values are not defined in the `content_variables` parameter, the [Template's default placeholder values](https://www.twilio.com/docs/content/content-api-resources#create-templates) are used. </summary>
83
83
publicstringContentVariables{get;set;}
84
84
85
+
///<summary> A string containing a JSON map of key value pairs of tags to be recorded as metadata for the message. The object may contain up to 10 tags. Keys and values can each be up to 128 characters in length. </summary>
Copy file name to clipboardExpand all lines: src/Twilio/Rest/Api/V2010/Account/MessageResource.cs
+10-2
Original file line number
Diff line number
Diff line change
@@ -194,6 +194,7 @@ public static async System.Threading.Tasks.Task<MessageResource> CreateAsync(Cre
194
194
/// <param name="sendAt"> The time that Twilio will send the message. Must be in ISO 8601 format. </param>
195
195
/// <param name="sendAsMms"> If set to `true`, Twilio delivers the message as a single MMS message, regardless of the presence of media. </param>
196
196
/// <param name="contentVariables"> For [Content Editor/API](https://www.twilio.com/docs/content) only: Key-value pairs of [Template variables](https://www.twilio.com/docs/content/using-variables-with-content-api) and their substitution values. `content_sid` parameter must also be provided. If values are not defined in the `content_variables` parameter, the [Template's default placeholder values](https://www.twilio.com/docs/content/content-api-resources#create-templates) are used. </param>
197
+
/// <param name="tags"> A string containing a JSON map of key value pairs of tags to be recorded as metadata for the message. The object may contain up to 10 tags. Keys and values can each be up to 128 characters in length. </param>
197
198
/// <param name="riskCheck"> </param>
198
199
/// <param name="client"> Client to make requests to Twilio </param>
199
200
/// <returns> A single instance of Message </returns>
@@ -221,10 +222,11 @@ public static MessageResource Create(
@@ -253,6 +255,7 @@ public static MessageResource Create(
253
255
/// <param name="sendAt"> The time that Twilio will send the message. Must be in ISO 8601 format. </param>
254
256
/// <param name="sendAsMms"> If set to `true`, Twilio delivers the message as a single MMS message, regardless of the presence of media. </param>
255
257
/// <param name="contentVariables"> For [Content Editor/API](https://www.twilio.com/docs/content) only: Key-value pairs of [Template variables](https://www.twilio.com/docs/content/using-variables-with-content-api) and their substitution values. `content_sid` parameter must also be provided. If values are not defined in the `content_variables` parameter, the [Template's default placeholder values](https://www.twilio.com/docs/content/content-api-resources#create-templates) are used. </param>
258
+
/// <param name="tags"> A string containing a JSON map of key value pairs of tags to be recorded as metadata for the message. The object may contain up to 10 tags. Keys and values can each be up to 128 characters in length. </param>
256
259
/// <param name="riskCheck"> </param>
257
260
/// <param name="client"> Client to make requests to Twilio </param>
258
261
/// <returns> Task that resolves to A single instance of Message </returns>
@@ -280,10 +283,11 @@ public static async System.Threading.Tasks.Task<MessageResource> CreateAsync(
///<summary> Whether to enable [Fallback to Long Code](https://www.twilio.com/docs/messaging/services#fallback-to-long-code) for messages sent through the Service instance. </summary>
61
+
///<summary> [OBSOLETE] Former feature used to fallback to longcode sender after certain short code message failures. </summary>
62
62
publicbool?FallbackToLongCode{get;set;}
63
63
64
64
///<summary> Whether to enable [Area Code Geomatch](https://www.twilio.com/docs/messaging/services#area-code-geomatch) on the Service Instance. </summary>
@@ -277,7 +277,7 @@ public class UpdateServiceOptions : IOptions<ServiceResource>
///<summary> Whether to enable [Fallback to Long Code](https://www.twilio.com/docs/messaging/services#fallback-to-long-code) for messages sent through the Service instance. </summary>
280
+
///<summary> [OBSOLETE] Former feature used to fallback to longcode sender after certain short code message failures. </summary>
281
281
publicbool?FallbackToLongCode{get;set;}
282
282
283
283
///<summary> Whether to enable [Area Code Geomatch](https://www.twilio.com/docs/messaging/services#area-code-geomatch) on the Service Instance. </summary>
0 commit comments