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
Copy file name to clipboardExpand all lines: CHANGES.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,19 @@
1
1
twilio-csharp Changelog
2
2
=======================
3
3
4
+
[2023-10-05] Version 6.14.1
5
+
---------------------------
6
+
**Library - Fix**
7
+
-[PR #705](https://github.com/twilio/twilio-csharp/pull/705): Update method comments to reflect new security testing method. Thanks to [@AsabuHere](https://github.com/AsabuHere)!
8
+
-[PR #704](https://github.com/twilio/twilio-csharp/pull/704): [C# helper library] Changes in validate ssl certificate method with new url and port. Thanks to [@AsabuHere](https://github.com/AsabuHere)!
9
+
10
+
**Library - Chore**
11
+
-[PR #700](https://github.com/twilio/twilio-csharp/pull/700): twilio help changes. Thanks to [@kridai](https://github.com/kridai)!
Copy file name to clipboardExpand all lines: src/Twilio/Rest/Api/V2010/Account/MessageOptions.cs
-7Lines changed: 0 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -82,9 +82,6 @@ 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
+2-10Lines changed: 2 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -197,7 +197,6 @@ public static async System.Threading.Tasks.Task<MessageResource> CreateAsync(Cre
197
197
/// <param name="sendAt"> The time that Twilio will send the message. Must be in ISO 8601 format. </param>
198
198
/// <param name="sendAsMms"> If set to `true`, Twilio delivers the message as a single MMS message, regardless of the presence of media. </param>
199
199
/// <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>
200
-
/// <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>
201
200
/// <param name="riskCheck"> </param>
202
201
/// <param name="client"> Client to make requests to Twilio </param>
203
202
/// <returns> A single instance of Message </returns>
@@ -225,11 +224,10 @@ public static MessageResource Create(
@@ -258,7 +256,6 @@ public static MessageResource Create(
258
256
/// <param name="sendAt"> The time that Twilio will send the message. Must be in ISO 8601 format. </param>
259
257
/// <param name="sendAsMms"> If set to `true`, Twilio delivers the message as a single MMS message, regardless of the presence of media. </param>
260
258
/// <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>
261
-
/// <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>
262
259
/// <param name="riskCheck"> </param>
263
260
/// <param name="client"> Client to make requests to Twilio </param>
264
261
/// <returns> Task that resolves to A single instance of Message </returns>
@@ -286,11 +283,10 @@ public static async System.Threading.Tasks.Task<MessageResource> CreateAsync(
///<summary> The unique SID identifier of the Primary Customer Profile that should be used as a parent. Only necessary when creating a secondary Customer Profile. </summary>
32
+
publicstringPrimaryProfileSid{get;}
33
+
34
+
35
+
/// <summary> Construct a new CreateComplianceInquiryOptions </summary>
36
+
/// <param name="primaryProfileSid"> The unique SID identifier of the Primary Customer Profile that should be used as a parent. Only necessary when creating a secondary Customer Profile. </param>
///<summary> The unique CustomerId matching the Customer Profile/Compliance Inquiry that should be resumed or resubmitted. This value will have been returned by the initial Compliance Inquiry creation call. </summary>
63
+
publicstringPathCustomerId{get;}
64
+
65
+
///<summary> The unique SID identifier of the Primary Customer Profile that should be used as a parent. Only necessary when creating a secondary Customer Profile. </summary>
66
+
publicstringPrimaryProfileSid{get;}
67
+
68
+
69
+
70
+
/// <summary> Construct a new UpdateComplianceInquiryOptions </summary>
71
+
/// <param name="pathCustomerId"> The unique CustomerId matching the Customer Profile/Compliance Inquiry that should be resumed or resubmitted. This value will have been returned by the initial Compliance Inquiry creation call. </param>
72
+
/// <param name="primaryProfileSid"> The unique SID identifier of the Primary Customer Profile that should be used as a parent. Only necessary when creating a secondary Customer Profile. </param>
0 commit comments