Skip to content

Commit 0a42720

Browse files
committed
[Librarian] Regenerated @ cd74051ce77dd603b6a6c5f89423ba5d7e41e838
1 parent 1b08ba2 commit 0a42720

File tree

107 files changed

+9289
-182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+9289
-182
lines changed

CHANGES.md

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

4+
[2017-11-03] Version 5.8.2
5+
---------------------------
6+
**Api**
7+
- Add programmable video keys
8+
9+
**Video**
10+
- Add `Participants`
11+
12+
413
[2017-10-27] Version 5.8.1
514
---------------------------
615
**Chat**

src/Twilio/Rest/Accounts/V1/Credential/PublicKeyResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public static ResourceSet<PublicKeyResource> Read(int? pageSize = null,
7575
long? limit = null,
7676
ITwilioRestClient client = null)
7777
{
78-
var options = new ReadPublicKeyOptions{PageSize = pageSize, Limit = limit};
78+
var options = new ReadPublicKeyOptions(){PageSize = pageSize, Limit = limit};
7979
return Read(options, client);
8080
}
8181

@@ -91,7 +91,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<PublicKeyResource>>
9191
long? limit = null,
9292
ITwilioRestClient client = null)
9393
{
94-
var options = new ReadPublicKeyOptions{PageSize = pageSize, Limit = limit};
94+
var options = new ReadPublicKeyOptions(){PageSize = pageSize, Limit = limit};
9595
return await ReadAsync(options, client);
9696
}
9797
#endif

src/Twilio/Rest/Api/V2010/Account/AddressResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ public static ResourceSet<AddressResource> Read(string pathAccountSid = null,
431431
long? limit = null,
432432
ITwilioRestClient client = null)
433433
{
434-
var options = new ReadAddressOptions{PathAccountSid = pathAccountSid, CustomerName = customerName, FriendlyName = friendlyName, IsoCountry = isoCountry, PageSize = pageSize, Limit = limit};
434+
var options = new ReadAddressOptions(){PathAccountSid = pathAccountSid, CustomerName = customerName, FriendlyName = friendlyName, IsoCountry = isoCountry, PageSize = pageSize, Limit = limit};
435435
return Read(options, client);
436436
}
437437

@@ -455,7 +455,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<AddressResource>> Re
455455
long? limit = null,
456456
ITwilioRestClient client = null)
457457
{
458-
var options = new ReadAddressOptions{PathAccountSid = pathAccountSid, CustomerName = customerName, FriendlyName = friendlyName, IsoCountry = isoCountry, PageSize = pageSize, Limit = limit};
458+
var options = new ReadAddressOptions(){PathAccountSid = pathAccountSid, CustomerName = customerName, FriendlyName = friendlyName, IsoCountry = isoCountry, PageSize = pageSize, Limit = limit};
459459
return await ReadAsync(options, client);
460460
}
461461
#endif

src/Twilio/Rest/Api/V2010/Account/ApplicationResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ public static ResourceSet<ApplicationResource> Read(string pathAccountSid = null
349349
long? limit = null,
350350
ITwilioRestClient client = null)
351351
{
352-
var options = new ReadApplicationOptions{PathAccountSid = pathAccountSid, FriendlyName = friendlyName, PageSize = pageSize, Limit = limit};
352+
var options = new ReadApplicationOptions(){PathAccountSid = pathAccountSid, FriendlyName = friendlyName, PageSize = pageSize, Limit = limit};
353353
return Read(options, client);
354354
}
355355

@@ -369,7 +369,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<ApplicationResource>
369369
long? limit = null,
370370
ITwilioRestClient client = null)
371371
{
372-
var options = new ReadApplicationOptions{PathAccountSid = pathAccountSid, FriendlyName = friendlyName, PageSize = pageSize, Limit = limit};
372+
var options = new ReadApplicationOptions(){PathAccountSid = pathAccountSid, FriendlyName = friendlyName, PageSize = pageSize, Limit = limit};
373373
return await ReadAsync(options, client);
374374
}
375375
#endif

src/Twilio/Rest/Api/V2010/Account/AuthorizedConnectAppResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public static ResourceSet<AuthorizedConnectAppResource> Read(string pathAccountS
165165
long? limit = null,
166166
ITwilioRestClient client = null)
167167
{
168-
var options = new ReadAuthorizedConnectAppOptions{PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit};
168+
var options = new ReadAuthorizedConnectAppOptions(){PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit};
169169
return Read(options, client);
170170
}
171171

@@ -183,7 +183,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<AuthorizedConnectApp
183183
long? limit = null,
184184
ITwilioRestClient client = null)
185185
{
186-
var options = new ReadAuthorizedConnectAppOptions{PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit};
186+
var options = new ReadAuthorizedConnectAppOptions(){PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit};
187187
return await ReadAsync(options, client);
188188
}
189189
#endif

src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountryResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static ResourceSet<AvailablePhoneNumberCountryResource> Read(string pathA
7878
long? limit = null,
7979
ITwilioRestClient client = null)
8080
{
81-
var options = new ReadAvailablePhoneNumberCountryOptions{PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit};
81+
var options = new ReadAvailablePhoneNumberCountryOptions(){PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit};
8282
return Read(options, client);
8383
}
8484

@@ -96,7 +96,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<AvailablePhoneNumber
9696
long? limit = null,
9797
ITwilioRestClient client = null)
9898
{
99-
var options = new ReadAvailablePhoneNumberCountryOptions{PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit};
99+
var options = new ReadAvailablePhoneNumberCountryOptions(){PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit};
100100
return await ReadAsync(options, client);
101101
}
102102
#endif

src/Twilio/Rest/Api/V2010/Account/CallResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ public static ResourceSet<CallResource> Read(string pathAccountSid = null,
437437
long? limit = null,
438438
ITwilioRestClient client = null)
439439
{
440-
var options = new ReadCallOptions{PathAccountSid = pathAccountSid, To = to, From = from, ParentCallSid = parentCallSid, Status = status, StartTimeBefore = startTimeBefore, StartTime = startTime, StartTimeAfter = startTimeAfter, EndTimeBefore = endTimeBefore, EndTime = endTime, EndTimeAfter = endTimeAfter, PageSize = pageSize, Limit = limit};
440+
var options = new ReadCallOptions(){PathAccountSid = pathAccountSid, To = to, From = from, ParentCallSid = parentCallSid, Status = status, StartTimeBefore = startTimeBefore, StartTime = startTime, StartTimeAfter = startTimeAfter, EndTimeBefore = endTimeBefore, EndTime = endTime, EndTimeAfter = endTimeAfter, PageSize = pageSize, Limit = limit};
441441
return Read(options, client);
442442
}
443443

@@ -475,7 +475,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<CallResource>> ReadA
475475
long? limit = null,
476476
ITwilioRestClient client = null)
477477
{
478-
var options = new ReadCallOptions{PathAccountSid = pathAccountSid, To = to, From = from, ParentCallSid = parentCallSid, Status = status, StartTimeBefore = startTimeBefore, StartTime = startTime, StartTimeAfter = startTimeAfter, EndTimeBefore = endTimeBefore, EndTime = endTime, EndTimeAfter = endTimeAfter, PageSize = pageSize, Limit = limit};
478+
var options = new ReadCallOptions(){PathAccountSid = pathAccountSid, To = to, From = from, ParentCallSid = parentCallSid, Status = status, StartTimeBefore = startTimeBefore, StartTime = startTime, StartTimeAfter = startTimeAfter, EndTimeBefore = endTimeBefore, EndTime = endTime, EndTimeAfter = endTimeAfter, PageSize = pageSize, Limit = limit};
479479
return await ReadAsync(options, client);
480480
}
481481
#endif

src/Twilio/Rest/Api/V2010/Account/ConferenceResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ public static ResourceSet<ConferenceResource> Read(string pathAccountSid = null,
190190
long? limit = null,
191191
ITwilioRestClient client = null)
192192
{
193-
var options = new ReadConferenceOptions{PathAccountSid = pathAccountSid, DateCreatedBefore = dateCreatedBefore, DateCreated = dateCreated, DateCreatedAfter = dateCreatedAfter, DateUpdatedBefore = dateUpdatedBefore, DateUpdated = dateUpdated, DateUpdatedAfter = dateUpdatedAfter, FriendlyName = friendlyName, Status = status, PageSize = pageSize, Limit = limit};
193+
var options = new ReadConferenceOptions(){PathAccountSid = pathAccountSid, DateCreatedBefore = dateCreatedBefore, DateCreated = dateCreated, DateCreatedAfter = dateCreatedAfter, DateUpdatedBefore = dateUpdatedBefore, DateUpdated = dateUpdated, DateUpdatedAfter = dateUpdatedAfter, FriendlyName = friendlyName, Status = status, PageSize = pageSize, Limit = limit};
194194
return Read(options, client);
195195
}
196196

@@ -224,7 +224,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<ConferenceResource>>
224224
long? limit = null,
225225
ITwilioRestClient client = null)
226226
{
227-
var options = new ReadConferenceOptions{PathAccountSid = pathAccountSid, DateCreatedBefore = dateCreatedBefore, DateCreated = dateCreated, DateCreatedAfter = dateCreatedAfter, DateUpdatedBefore = dateUpdatedBefore, DateUpdated = dateUpdated, DateUpdatedAfter = dateUpdatedAfter, FriendlyName = friendlyName, Status = status, PageSize = pageSize, Limit = limit};
227+
var options = new ReadConferenceOptions(){PathAccountSid = pathAccountSid, DateCreatedBefore = dateCreatedBefore, DateCreated = dateCreated, DateCreatedAfter = dateCreatedAfter, DateUpdatedBefore = dateUpdatedBefore, DateUpdated = dateUpdated, DateUpdatedAfter = dateUpdatedAfter, FriendlyName = friendlyName, Status = status, PageSize = pageSize, Limit = limit};
228228
return await ReadAsync(options, client);
229229
}
230230
#endif

src/Twilio/Rest/Api/V2010/Account/ConnectAppResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ public static ResourceSet<ConnectAppResource> Read(string pathAccountSid = null,
265265
long? limit = null,
266266
ITwilioRestClient client = null)
267267
{
268-
var options = new ReadConnectAppOptions{PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit};
268+
var options = new ReadConnectAppOptions(){PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit};
269269
return Read(options, client);
270270
}
271271

@@ -283,7 +283,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<ConnectAppResource>>
283283
long? limit = null,
284284
ITwilioRestClient client = null)
285285
{
286-
var options = new ReadConnectAppOptions{PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit};
286+
var options = new ReadConnectAppOptions(){PathAccountSid = pathAccountSid, PageSize = pageSize, Limit = limit};
287287
return await ReadAsync(options, client);
288288
}
289289
#endif

src/Twilio/Rest/Api/V2010/Account/IncomingPhoneNumber/LocalResource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public static ResourceSet<LocalResource> Read(string pathAccountSid = null,
101101
long? limit = null,
102102
ITwilioRestClient client = null)
103103
{
104-
var options = new ReadLocalOptions{PathAccountSid = pathAccountSid, Beta = beta, FriendlyName = friendlyName, PhoneNumber = phoneNumber, Origin = origin, PageSize = pageSize, Limit = limit};
104+
var options = new ReadLocalOptions(){PathAccountSid = pathAccountSid, Beta = beta, FriendlyName = friendlyName, PhoneNumber = phoneNumber, Origin = origin, PageSize = pageSize, Limit = limit};
105105
return Read(options, client);
106106
}
107107

@@ -127,7 +127,7 @@ public static async System.Threading.Tasks.Task<ResourceSet<LocalResource>> Read
127127
long? limit = null,
128128
ITwilioRestClient client = null)
129129
{
130-
var options = new ReadLocalOptions{PathAccountSid = pathAccountSid, Beta = beta, FriendlyName = friendlyName, PhoneNumber = phoneNumber, Origin = origin, PageSize = pageSize, Limit = limit};
130+
var options = new ReadLocalOptions(){PathAccountSid = pathAccountSid, Beta = beta, FriendlyName = friendlyName, PhoneNumber = phoneNumber, Origin = origin, PageSize = pageSize, Limit = limit};
131131
return await ReadAsync(options, client);
132132
}
133133
#endif

0 commit comments

Comments
 (0)