Skip to content

Commit 16d4184

Browse files
committed
[Librarian] Regenerated @ d9d9306ce476f68a10ab20bf103e0e31e523a4b3
1 parent c3d73a6 commit 16d4184

31 files changed

+2685
-248
lines changed

CHANGES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
twilio-csharp Changelog
22
=======================
33

4+
[2023-06-28] Version 6.9.0
5+
--------------------------
6+
**Lookups**
7+
- Add `reassigned_number` package to the lookup response
8+
9+
**Numbers**
10+
- Add hosted_number_order under version `/v2`.
11+
- Update properties in Porting and Bulk Porting APIs. **(breaking change)**
12+
- Added bulk Portability API under version `/v1`.
13+
- Added Portability API under version `/v1`.
14+
15+
416
[2023-06-15] Version 6.8.0
517
--------------------------
618
**Api**

src/Twilio/Rest/Insights/V1/Call/AnnotationOptions.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
namespace Twilio.Rest.Insights.V1.Call
2525
{
26-
/// <summary> Fetch a specific Annotation. </summary>
26+
/// <summary> Get the Annotation for a specific Call. </summary>
2727
public class FetchAnnotationOptions : IOptions<AnnotationResource>
2828
{
2929

@@ -52,7 +52,7 @@ public List<KeyValuePair<string, string>> GetParams()
5252
}
5353

5454

55-
/// <summary> Create/Update the annotation for the call </summary>
55+
/// <summary> Update an Annotation for a specific Call. </summary>
5656
public class UpdateAnnotationOptions : IOptions<AnnotationResource>
5757
{
5858

@@ -65,19 +65,19 @@ public class UpdateAnnotationOptions : IOptions<AnnotationResource>
6565

6666
public AnnotationResource.ConnectivityIssueEnum ConnectivityIssue { get; set; }
6767

68-
///<summary> Specify if the call had any subjective quality issues. Possible values, one or more of: no_quality_issue, low_volume, choppy_robotic, echo, dtmf, latency, owa, static_noise. Use comma separated values to indicate multiple quality issues for the same call </summary>
68+
///<summary> Specify if the call had any subjective quality issues. Possible values, one or more of `no_quality_issue`, `low_volume`, `choppy_robotic`, `echo`, `dtmf`, `latency`, `owa`, `static_noise`. Use comma separated values to indicate multiple quality issues for the same call. </summary>
6969
public string QualityIssues { get; set; }
7070

71-
///<summary> Specify if the call was a spam call. Use this to provide feedback on whether calls placed from your account were marked as spam, or if inbound calls received by your account were unwanted spam. Is of type Boolean: true, false. Use true if the call was a spam call. </summary>
71+
///<summary> A boolean flag to indicate if the call was a spam call. Use this to provide feedback on whether calls placed from your account were marked as spam, or if inbound calls received by your account were unwanted spam. Use `true` if the call was a spam call. </summary>
7272
public bool? Spam { get; set; }
7373

7474
///<summary> Specify the call score. This is of type integer. Use a range of 1-5 to indicate the call experience score, with the following mapping as a reference for rating the call [5: Excellent, 4: Good, 3 : Fair, 2 : Poor, 1: Bad]. </summary>
7575
public int? CallScore { get; set; }
7676

77-
///<summary> Specify any comments pertaining to the call. This of type string with a max limit of 100 characters. Twilio does not treat this field as PII, so don’t put any PII in here. </summary>
77+
///<summary> Specify any comments pertaining to the call. `comment` has a maximum character limit of 100. Twilio does not treat this field as PII, so no PII should be included in the `comment`. </summary>
7878
public string Comment { get; set; }
7979

80-
///<summary> Associate this call with an incident or support ticket. This is of type string with a max limit of 100 characters. Twilio does not treat this field as PII, so don’t put any PII in here. </summary>
80+
///<summary> Associate this call with an incident or support ticket. The `incident` parameter is of type string with a maximum character limit of 100. Twilio does not treat this field as PII, so no PII should be included in `incident`. </summary>
8181
public string Incident { get; set; }
8282

8383

src/Twilio/Rest/Insights/V1/Call/AnnotationResource.cs

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ private static Request BuildFetchRequest(FetchAnnotationOptions options, ITwilio
7979
);
8080
}
8181

82-
/// <summary> Fetch a specific Annotation. </summary>
82+
/// <summary> Get the Annotation for a specific Call. </summary>
8383
/// <param name="options"> Fetch Annotation parameters </param>
8484
/// <param name="client"> Client to make requests to Twilio </param>
8585
/// <returns> A single instance of Annotation </returns>
@@ -91,7 +91,7 @@ public static AnnotationResource Fetch(FetchAnnotationOptions options, ITwilioRe
9191
}
9292

9393
#if !NET35
94-
/// <summary> Fetch a specific Annotation. </summary>
94+
/// <summary> Get the Annotation for a specific Call. </summary>
9595
/// <param name="options"> Fetch Annotation parameters </param>
9696
/// <param name="client"> Client to make requests to Twilio </param>
9797
/// <returns> Task that resolves to A single instance of Annotation </returns>
@@ -103,7 +103,7 @@ public static async System.Threading.Tasks.Task<AnnotationResource> FetchAsync(F
103103
return FromJson(response.Content);
104104
}
105105
#endif
106-
/// <summary> Fetch a specific Annotation. </summary>
106+
/// <summary> Get the Annotation for a specific Call. </summary>
107107
/// <param name="pathCallSid"> The unique SID identifier of the Call. </param>
108108
/// <param name="client"> Client to make requests to Twilio </param>
109109
/// <returns> A single instance of Annotation </returns>
@@ -116,7 +116,7 @@ public static AnnotationResource Fetch(
116116
}
117117

118118
#if !NET35
119-
/// <summary> Fetch a specific Annotation. </summary>
119+
/// <summary> Get the Annotation for a specific Call. </summary>
120120
/// <param name="pathCallSid"> The unique SID identifier of the Call. </param>
121121
/// <param name="client"> Client to make requests to Twilio </param>
122122
/// <returns> Task that resolves to A single instance of Annotation </returns>
@@ -144,7 +144,7 @@ private static Request BuildUpdateRequest(UpdateAnnotationOptions options, ITwil
144144
);
145145
}
146146

147-
/// <summary> Create/Update the annotation for the call </summary>
147+
/// <summary> Update an Annotation for a specific Call. </summary>
148148
/// <param name="options"> Update Annotation parameters </param>
149149
/// <param name="client"> Client to make requests to Twilio </param>
150150
/// <returns> A single instance of Annotation </returns>
@@ -155,7 +155,7 @@ public static AnnotationResource Update(UpdateAnnotationOptions options, ITwilio
155155
return FromJson(response.Content);
156156
}
157157

158-
/// <summary> Create/Update the annotation for the call </summary>
158+
/// <summary> Update an Annotation for a specific Call. </summary>
159159
/// <param name="options"> Update Annotation parameters </param>
160160
/// <param name="client"> Client to make requests to Twilio </param>
161161
/// <returns> Task that resolves to A single instance of Annotation </returns>
@@ -169,15 +169,15 @@ public static async System.Threading.Tasks.Task<AnnotationResource> UpdateAsync(
169169
}
170170
#endif
171171

172-
/// <summary> Create/Update the annotation for the call </summary>
172+
/// <summary> Update an Annotation for a specific Call. </summary>
173173
/// <param name="pathCallSid"> The unique string that Twilio created to identify this Call resource. It always starts with a CA. </param>
174174
/// <param name="answeredBy"> </param>
175175
/// <param name="connectivityIssue"> </param>
176-
/// <param name="qualityIssues"> Specify if the call had any subjective quality issues. Possible values, one or more of: no_quality_issue, low_volume, choppy_robotic, echo, dtmf, latency, owa, static_noise. Use comma separated values to indicate multiple quality issues for the same call </param>
177-
/// <param name="spam"> Specify if the call was a spam call. Use this to provide feedback on whether calls placed from your account were marked as spam, or if inbound calls received by your account were unwanted spam. Is of type Boolean: true, false. Use true if the call was a spam call. </param>
176+
/// <param name="qualityIssues"> Specify if the call had any subjective quality issues. Possible values, one or more of `no_quality_issue`, `low_volume`, `choppy_robotic`, `echo`, `dtmf`, `latency`, `owa`, `static_noise`. Use comma separated values to indicate multiple quality issues for the same call. </param>
177+
/// <param name="spam"> A boolean flag to indicate if the call was a spam call. Use this to provide feedback on whether calls placed from your account were marked as spam, or if inbound calls received by your account were unwanted spam. Use `true` if the call was a spam call. </param>
178178
/// <param name="callScore"> Specify the call score. This is of type integer. Use a range of 1-5 to indicate the call experience score, with the following mapping as a reference for rating the call [5: Excellent, 4: Good, 3 : Fair, 2 : Poor, 1: Bad]. </param>
179-
/// <param name="comment"> Specify any comments pertaining to the call. This of type string with a max limit of 100 characters. Twilio does not treat this field as PII, so don’t put any PII in here. </param>
180-
/// <param name="incident"> Associate this call with an incident or support ticket. This is of type string with a max limit of 100 characters. Twilio does not treat this field as PII, so don’t put any PII in here. </param>
179+
/// <param name="comment"> Specify any comments pertaining to the call. `comment` has a maximum character limit of 100. Twilio does not treat this field as PII, so no PII should be included in the `comment`. </param>
180+
/// <param name="incident"> Associate this call with an incident or support ticket. The `incident` parameter is of type string with a maximum character limit of 100. Twilio does not treat this field as PII, so no PII should be included in `incident`. </param>
181181
/// <param name="client"> Client to make requests to Twilio </param>
182182
/// <returns> A single instance of Annotation </returns>
183183
public static AnnotationResource Update(
@@ -196,15 +196,15 @@ public static AnnotationResource Update(
196196
}
197197

198198
#if !NET35
199-
/// <summary> Create/Update the annotation for the call </summary>
199+
/// <summary> Update an Annotation for a specific Call. </summary>
200200
/// <param name="pathCallSid"> The unique string that Twilio created to identify this Call resource. It always starts with a CA. </param>
201201
/// <param name="answeredBy"> </param>
202202
/// <param name="connectivityIssue"> </param>
203-
/// <param name="qualityIssues"> Specify if the call had any subjective quality issues. Possible values, one or more of: no_quality_issue, low_volume, choppy_robotic, echo, dtmf, latency, owa, static_noise. Use comma separated values to indicate multiple quality issues for the same call </param>
204-
/// <param name="spam"> Specify if the call was a spam call. Use this to provide feedback on whether calls placed from your account were marked as spam, or if inbound calls received by your account were unwanted spam. Is of type Boolean: true, false. Use true if the call was a spam call. </param>
203+
/// <param name="qualityIssues"> Specify if the call had any subjective quality issues. Possible values, one or more of `no_quality_issue`, `low_volume`, `choppy_robotic`, `echo`, `dtmf`, `latency`, `owa`, `static_noise`. Use comma separated values to indicate multiple quality issues for the same call. </param>
204+
/// <param name="spam"> A boolean flag to indicate if the call was a spam call. Use this to provide feedback on whether calls placed from your account were marked as spam, or if inbound calls received by your account were unwanted spam. Use `true` if the call was a spam call. </param>
205205
/// <param name="callScore"> Specify the call score. This is of type integer. Use a range of 1-5 to indicate the call experience score, with the following mapping as a reference for rating the call [5: Excellent, 4: Good, 3 : Fair, 2 : Poor, 1: Bad]. </param>
206-
/// <param name="comment"> Specify any comments pertaining to the call. This of type string with a max limit of 100 characters. Twilio does not treat this field as PII, so don’t put any PII in here. </param>
207-
/// <param name="incident"> Associate this call with an incident or support ticket. This is of type string with a max limit of 100 characters. Twilio does not treat this field as PII, so don’t put any PII in here. </param>
206+
/// <param name="comment"> Specify any comments pertaining to the call. `comment` has a maximum character limit of 100. Twilio does not treat this field as PII, so no PII should be included in the `comment`. </param>
207+
/// <param name="incident"> Associate this call with an incident or support ticket. The `incident` parameter is of type string with a maximum character limit of 100. Twilio does not treat this field as PII, so no PII should be included in `incident`. </param>
208208
/// <param name="client"> Client to make requests to Twilio </param>
209209
/// <returns> Task that resolves to A single instance of Annotation </returns>
210210
public static async System.Threading.Tasks.Task<AnnotationResource> UpdateAsync(
@@ -257,23 +257,23 @@ public static AnnotationResource FromJson(string json)
257257
[JsonProperty("connectivity_issue")]
258258
public AnnotationResource.ConnectivityIssueEnum ConnectivityIssue { get; private set; }
259259

260-
///<summary> Specify if the call had any subjective quality issues. Possible values, one or more of: no_quality_issue, low_volume, choppy_robotic, echo, dtmf, latency, owa, static_noise. Use comma separated values to indicate multiple quality issues for the same call </summary>
260+
///<summary> Specifies if the call had any subjective quality issues. Possible values are one or more of `no_quality_issue`, `low_volume`, `choppy_robotic`, `echo`, `dtmf`, `latency`, `owa`, or `static_noise`. </summary>
261261
[JsonProperty("quality_issues")]
262262
public List<string> QualityIssues { get; private set; }
263263

264-
///<summary> Specify if the call was a spam call. Use this to provide feedback on whether calls placed from your account were marked as spam, or if inbound calls received by your account were unwanted spam. Is of type Boolean: true, false. Use true if the call was a spam call. </summary>
264+
///<summary> Specifies if the call was a spam call. Use this to provide feedback on whether calls placed from your account were marked as spam, or if inbound calls received by your account were unwanted spam. Is of type Boolean: true, false. Use true if the call was a spam call. </summary>
265265
[JsonProperty("spam")]
266266
public bool? Spam { get; private set; }
267267

268-
///<summary> Specify the call score. This is of type integer. Use a range of 1-5 to indicate the call experience score, with the following mapping as a reference for rating the call [5: Excellent, 4: Good, 3 : Fair, 2 : Poor, 1: Bad]. </summary>
268+
///<summary> Specifies the Call Score, if available. This is of type integer. Use a range of 1-5 to indicate the call experience score, with the following mapping as a reference for rating the call [5: Excellent, 4: Good, 3 : Fair, 2 : Poor, 1: Bad]. </summary>
269269
[JsonProperty("call_score")]
270270
public int? CallScore { get; private set; }
271271

272-
///<summary> Specify any comments pertaining to the call. This of type string with a max limit of 100 characters. Twilio does not treat this field as PII, so don’t put any PII in here. </summary>
272+
///<summary> Specifies any comments pertaining to the call. Twilio does not treat this field as PII, so no PII should be included in comments. </summary>
273273
[JsonProperty("comment")]
274274
public string Comment { get; private set; }
275275

276-
///<summary> Associate this call with an incident or support ticket. This is of type string with a max limit of 100 characters. Twilio does not treat this field as PII, so don’t put any PII in here. </summary>
276+
///<summary> Incident or support ticket associated with this call. The `incident` property is of type string with a maximum character limit of 100. Twilio does not treat this field as PII, so no PII should be included in `incident`. </summary>
277277
[JsonProperty("incident")]
278278
public string Incident { get; private set; }
279279

src/Twilio/Rest/Insights/V1/Call/CallSummaryOptions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@
2323

2424
namespace Twilio.Rest.Insights.V1.Call
2525
{
26-
/// <summary> fetch </summary>
26+
/// <summary> Get a specific Call Summary. </summary>
2727
public class FetchCallSummaryOptions : IOptions<CallSummaryResource>
2828
{
2929

30-
30+
///<summary> The unique SID identifier of the Call. </summary>
3131
public string PathCallSid { get; }
3232

33-
33+
///<summary> The Processing State of this Call Summary. One of `complete`, `partial` or `all`. </summary>
3434
public CallSummaryResource.ProcessingStateEnum ProcessingState { get; set; }
3535

3636

3737

3838
/// <summary> Construct a new FetchSummaryOptions </summary>
39-
/// <param name="pathCallSid"> </param>
39+
/// <param name="pathCallSid"> The unique SID identifier of the Call. </param>
4040
public FetchCallSummaryOptions(string pathCallSid)
4141
{
4242
PathCallSid = pathCallSid;

0 commit comments

Comments
 (0)