diff --git a/CHANGES.md b/CHANGES.md
index de0d32f18..90f11303d 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,28 @@
twilio-csharp Changelog
=======================
+[2023-09-07] Version 6.13.0
+---------------------------
+**Library - Fix**
+- [PR #687](https://github.com/twilio/twilio-csharp/pull/687): Update dotnet version. Thanks to [@kridai](https://github.com/kridai)!
+
+**Api**
+- Make message tagging parameters public **(breaking change)**
+
+**Flex**
+- Adding `agent_conv_end_methods` to Flex Configuration
+
+**Messaging**
+- Mark Mesasging Services fallback_to_long_code feature obsolete
+
+**Numbers**
+- Add Create Port In request api
+- Renaming sid for bulk_hosting_sid and remove account_sid response field in numbers/v2/BulkHostedNumberOrders **(breaking change)**
+
+**Pricing**
+- gate resources behind a beta_feature
+
+
[2023-08-24] Version 6.12.0
---------------------------
**Api**
diff --git a/src/Twilio/Base/IOptions.cs b/src/Twilio/Base/IOptions.cs
index 905b84e7f..37b3e633f 100644
--- a/src/Twilio/Base/IOptions.cs
+++ b/src/Twilio/Base/IOptions.cs
@@ -70,6 +70,6 @@ public long? Limit
///
///
/// List of parameters for the request
- public abstract List> GetParams();
+ //public abstract List> GetParams();
}
}
diff --git a/src/Twilio/Rest/Accounts/V1/AuthTokenPromotionOptions.cs b/src/Twilio/Rest/Accounts/V1/AuthTokenPromotionOptions.cs
index 9a0bd714a..7e1aa7001 100644
--- a/src/Twilio/Rest/Accounts/V1/AuthTokenPromotionOptions.cs
+++ b/src/Twilio/Rest/Accounts/V1/AuthTokenPromotionOptions.cs
@@ -32,7 +32,7 @@ public class UpdateAuthTokenPromotionOptions : IOptions Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Accounts/V1/AuthTokenPromotionResource.cs b/src/Twilio/Rest/Accounts/V1/AuthTokenPromotionResource.cs
index fde96932f..4bb1079c1 100644
--- a/src/Twilio/Rest/Accounts/V1/AuthTokenPromotionResource.cs
+++ b/src/Twilio/Rest/Accounts/V1/AuthTokenPromotionResource.cs
@@ -30,6 +30,8 @@ public class AuthTokenPromotionResource : Resource
{
+
+
private static Request BuildUpdateRequest(UpdateAuthTokenPromotionOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Accounts/V1/Credential/AwsOptions.cs b/src/Twilio/Rest/Accounts/V1/Credential/AwsOptions.cs
index 3c363b40e..1415da37f 100644
--- a/src/Twilio/Rest/Accounts/V1/Credential/AwsOptions.cs
+++ b/src/Twilio/Rest/Accounts/V1/Credential/AwsOptions.cs
@@ -47,7 +47,7 @@ public CreateAwsOptions(string credentials)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -86,7 +86,7 @@ public DeleteAwsOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -115,7 +115,7 @@ public FetchAwsOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -135,7 +135,7 @@ public class ReadAwsOptions : ReadOptions
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -170,7 +170,7 @@ public UpdateAwsOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Accounts/V1/Credential/AwsResource.cs b/src/Twilio/Rest/Accounts/V1/Credential/AwsResource.cs
index e410d8c4b..45b6b9a6b 100644
--- a/src/Twilio/Rest/Accounts/V1/Credential/AwsResource.cs
+++ b/src/Twilio/Rest/Accounts/V1/Credential/AwsResource.cs
@@ -30,6 +30,8 @@ public class AwsResource : Resource
{
+
+
private static Request BuildCreateRequest(CreateAwsOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Accounts/V1/Credential/PublicKeyOptions.cs b/src/Twilio/Rest/Accounts/V1/Credential/PublicKeyOptions.cs
index 462686565..786f77418 100644
--- a/src/Twilio/Rest/Accounts/V1/Credential/PublicKeyOptions.cs
+++ b/src/Twilio/Rest/Accounts/V1/Credential/PublicKeyOptions.cs
@@ -47,7 +47,7 @@ public CreatePublicKeyOptions(string publicKey)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -86,7 +86,7 @@ public DeletePublicKeyOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -115,7 +115,7 @@ public FetchPublicKeyOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -135,7 +135,7 @@ public class ReadPublicKeyOptions : ReadOptions
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -170,7 +170,7 @@ public UpdatePublicKeyOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Accounts/V1/Credential/PublicKeyResource.cs b/src/Twilio/Rest/Accounts/V1/Credential/PublicKeyResource.cs
index bffd1df31..8f7148726 100644
--- a/src/Twilio/Rest/Accounts/V1/Credential/PublicKeyResource.cs
+++ b/src/Twilio/Rest/Accounts/V1/Credential/PublicKeyResource.cs
@@ -30,6 +30,8 @@ public class PublicKeyResource : Resource
{
+
+
private static Request BuildCreateRequest(CreatePublicKeyOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Accounts/V1/SecondaryAuthTokenOptions.cs b/src/Twilio/Rest/Accounts/V1/SecondaryAuthTokenOptions.cs
index 8668186d3..6bcd38669 100644
--- a/src/Twilio/Rest/Accounts/V1/SecondaryAuthTokenOptions.cs
+++ b/src/Twilio/Rest/Accounts/V1/SecondaryAuthTokenOptions.cs
@@ -32,7 +32,7 @@ public class CreateSecondaryAuthTokenOptions : IOptions Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -50,7 +50,7 @@ public class DeleteSecondaryAuthTokenOptions : IOptions Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Accounts/V1/SecondaryAuthTokenResource.cs b/src/Twilio/Rest/Accounts/V1/SecondaryAuthTokenResource.cs
index d5fe9bb32..e4bd53cde 100644
--- a/src/Twilio/Rest/Accounts/V1/SecondaryAuthTokenResource.cs
+++ b/src/Twilio/Rest/Accounts/V1/SecondaryAuthTokenResource.cs
@@ -30,6 +30,8 @@ public class SecondaryAuthTokenResource : Resource
{
+
+
private static Request BuildCreateRequest(CreateSecondaryAuthTokenOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/Address/DependentPhoneNumberOptions.cs b/src/Twilio/Rest/Api/V2010/Account/Address/DependentPhoneNumberOptions.cs
index 76352a8e1..b4cdd56e3 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Address/DependentPhoneNumberOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Address/DependentPhoneNumberOptions.cs
@@ -44,7 +44,7 @@ public ReadDependentPhoneNumberOptions(string pathAddressSid)
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/Address/DependentPhoneNumberResource.cs b/src/Twilio/Rest/Api/V2010/Account/Address/DependentPhoneNumberResource.cs
index 10e10d427..b2c4bbbc8 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Address/DependentPhoneNumberResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Address/DependentPhoneNumberResource.cs
@@ -29,6 +29,8 @@ namespace Twilio.Rest.Api.V2010.Account.Address
public class DependentPhoneNumberResource : Resource
{
+
+
[JsonConverter(typeof(StringEnumConverter))]
public sealed class EmergencyStatusEnum : StringEnum
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/AddressOptions.cs b/src/Twilio/Rest/Api/V2010/Account/AddressOptions.cs
index 7f64edc19..e31d05e6f 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AddressOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AddressOptions.cs
@@ -81,7 +81,7 @@ public CreateAddressOptions(string customerName, string street, string city, str
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -151,7 +151,7 @@ public DeleteAddressOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -183,7 +183,7 @@ public FetchAddressOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -215,7 +215,7 @@ public class ReadAddressOptions : ReadOptions
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -289,7 +289,7 @@ public UpdateAddressOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/AddressResource.cs b/src/Twilio/Rest/Api/V2010/Account/AddressResource.cs
index 618430786..c47bb1b8d 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AddressResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AddressResource.cs
@@ -30,6 +30,8 @@ public class AddressResource : Resource
{
+
+
private static Request BuildCreateRequest(CreateAddressOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/ApplicationOptions.cs b/src/Twilio/Rest/Api/V2010/Account/ApplicationOptions.cs
index caad1c796..d967144b7 100644
--- a/src/Twilio/Rest/Api/V2010/Account/ApplicationOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/ApplicationOptions.cs
@@ -83,7 +83,7 @@ public class CreateApplicationOptions : IOptions
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -177,7 +177,7 @@ public DeleteApplicationOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -209,7 +209,7 @@ public FetchApplicationOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -235,7 +235,7 @@ public class ReadApplicationOptions : ReadOptions
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -322,7 +322,7 @@ public UpdateApplicationOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/ApplicationResource.cs b/src/Twilio/Rest/Api/V2010/Account/ApplicationResource.cs
index ec7b6d34e..ddafeeb72 100644
--- a/src/Twilio/Rest/Api/V2010/Account/ApplicationResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/ApplicationResource.cs
@@ -30,6 +30,8 @@ public class ApplicationResource : Resource
{
+
+
private static Request BuildCreateRequest(CreateApplicationOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/AuthorizedConnectAppOptions.cs b/src/Twilio/Rest/Api/V2010/Account/AuthorizedConnectAppOptions.cs
index f3df268d4..05b863309 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AuthorizedConnectAppOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AuthorizedConnectAppOptions.cs
@@ -44,7 +44,7 @@ public FetchAuthorizedConnectAppOptions(string pathConnectAppSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -67,7 +67,7 @@ public class ReadAuthorizedConnectAppOptions : ReadOptions Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/AuthorizedConnectAppResource.cs b/src/Twilio/Rest/Api/V2010/Account/AuthorizedConnectAppResource.cs
index a27d5c204..27792bd18 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AuthorizedConnectAppResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AuthorizedConnectAppResource.cs
@@ -29,6 +29,8 @@ namespace Twilio.Rest.Api.V2010.Account
public class AuthorizedConnectAppResource : Resource
{
+
+
[JsonConverter(typeof(StringEnumConverter))]
public sealed class PermissionEnum : StringEnum
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/LocalOptions.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/LocalOptions.cs
index 06d607677..a4b2da644 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/LocalOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/LocalOptions.cs
@@ -98,7 +98,7 @@ public ReadLocalOptions(string pathCountryCode)
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/LocalResource.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/LocalResource.cs
index 52d42d31c..feb0fb8ad 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/LocalResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/LocalResource.cs
@@ -30,6 +30,8 @@ public class LocalResource : Resource
{
+
+
private static Request BuildReadRequest(ReadLocalOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MachineToMachineOptions.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MachineToMachineOptions.cs
index 29ca31a6b..c080ad02d 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MachineToMachineOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MachineToMachineOptions.cs
@@ -98,7 +98,7 @@ public ReadMachineToMachineOptions(string pathCountryCode)
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MachineToMachineResource.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MachineToMachineResource.cs
index f7667bd34..3668e4a3b 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MachineToMachineResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MachineToMachineResource.cs
@@ -30,6 +30,8 @@ public class MachineToMachineResource : Resource
{
+
+
private static Request BuildReadRequest(ReadMachineToMachineOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MobileOptions.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MobileOptions.cs
index 47cff52c8..fb5adb50f 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MobileOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MobileOptions.cs
@@ -98,7 +98,7 @@ public ReadMobileOptions(string pathCountryCode)
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MobileResource.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MobileResource.cs
index 9e2335a06..745ef797d 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MobileResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/MobileResource.cs
@@ -30,6 +30,8 @@ public class MobileResource : Resource
{
+
+
private static Request BuildReadRequest(ReadMobileOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/NationalOptions.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/NationalOptions.cs
index 3dbb9ea62..6c4b74145 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/NationalOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/NationalOptions.cs
@@ -98,7 +98,7 @@ public ReadNationalOptions(string pathCountryCode)
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/NationalResource.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/NationalResource.cs
index b3f45d68b..b69b26378 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/NationalResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/NationalResource.cs
@@ -30,6 +30,8 @@ public class NationalResource : Resource
{
+
+
private static Request BuildReadRequest(ReadNationalOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/SharedCostOptions.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/SharedCostOptions.cs
index 1fd23b5bb..ce349a13c 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/SharedCostOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/SharedCostOptions.cs
@@ -98,7 +98,7 @@ public ReadSharedCostOptions(string pathCountryCode)
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/SharedCostResource.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/SharedCostResource.cs
index d4febe8af..cbc475ae5 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/SharedCostResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/SharedCostResource.cs
@@ -30,6 +30,8 @@ public class SharedCostResource : Resource
{
+
+
private static Request BuildReadRequest(ReadSharedCostOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/TollFreeOptions.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/TollFreeOptions.cs
index cf207ac04..d68889f59 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/TollFreeOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/TollFreeOptions.cs
@@ -98,7 +98,7 @@ public ReadTollFreeOptions(string pathCountryCode)
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/TollFreeResource.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/TollFreeResource.cs
index 385c55f51..ada70798a 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/TollFreeResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/TollFreeResource.cs
@@ -30,6 +30,8 @@ public class TollFreeResource : Resource
{
+
+
private static Request BuildReadRequest(ReadTollFreeOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/VoipOptions.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/VoipOptions.cs
index d8edfbddb..371ab8367 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/VoipOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/VoipOptions.cs
@@ -98,7 +98,7 @@ public ReadVoipOptions(string pathCountryCode)
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/VoipResource.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/VoipResource.cs
index 1336c99b0..57179676b 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/VoipResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountry/VoipResource.cs
@@ -30,6 +30,8 @@ public class VoipResource : Resource
{
+
+
private static Request BuildReadRequest(ReadVoipOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountryOptions.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountryOptions.cs
index fe40e8e6c..cf2feafdf 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountryOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountryOptions.cs
@@ -44,7 +44,7 @@ public FetchAvailablePhoneNumberCountryOptions(string pathCountryCode)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -67,7 +67,7 @@ public class ReadAvailablePhoneNumberCountryOptions : ReadOptions Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountryResource.cs b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountryResource.cs
index 81a01f632..7d5e12b8c 100644
--- a/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountryResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/AvailablePhoneNumberCountryResource.cs
@@ -30,6 +30,8 @@ public class AvailablePhoneNumberCountryResource : Resource
{
+
+
private static Request BuildFetchRequest(FetchAvailablePhoneNumberCountryOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/BalanceOptions.cs b/src/Twilio/Rest/Api/V2010/Account/BalanceOptions.cs
index 1d8947290..6a69582c2 100644
--- a/src/Twilio/Rest/Api/V2010/Account/BalanceOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/BalanceOptions.cs
@@ -35,7 +35,7 @@ public class FetchBalanceOptions : IOptions
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/BalanceResource.cs b/src/Twilio/Rest/Api/V2010/Account/BalanceResource.cs
index c4f025cfa..62f40ad34 100644
--- a/src/Twilio/Rest/Api/V2010/Account/BalanceResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/BalanceResource.cs
@@ -30,6 +30,8 @@ public class BalanceResource : Resource
{
+
+
private static Request BuildFetchRequest(FetchBalanceOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/EventOptions.cs b/src/Twilio/Rest/Api/V2010/Account/Call/EventOptions.cs
index 66d7b3533..818550a3c 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/EventOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/EventOptions.cs
@@ -44,7 +44,7 @@ public ReadEventOptions(string pathCallSid)
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/EventResource.cs b/src/Twilio/Rest/Api/V2010/Account/Call/EventResource.cs
index 69a2f49d6..9578c5a04 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/EventResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/EventResource.cs
@@ -30,6 +30,8 @@ public class EventResource : Resource
{
+
+
private static Request BuildReadRequest(ReadEventOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackOptions.cs b/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackOptions.cs
index ef6f28e28..31d6d6e39 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackOptions.cs
@@ -44,7 +44,7 @@ public FetchFeedbackOptions(string pathCallSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -83,7 +83,7 @@ public UpdateFeedbackOptions(string pathCallSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackResource.cs b/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackResource.cs
index 0f90073f3..a4a8ab2ac 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackResource.cs
@@ -29,6 +29,8 @@ namespace Twilio.Rest.Api.V2010.Account.Call
public class FeedbackResource : Resource
{
+
+
[JsonConverter(typeof(StringEnumConverter))]
public sealed class IssuesEnum : StringEnum
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackSummaryOptions.cs b/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackSummaryOptions.cs
index c6a523ca6..98b703953 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackSummaryOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackSummaryOptions.cs
@@ -58,7 +58,7 @@ public CreateFeedbackSummaryOptions(DateTime? startDate, DateTime? endDate)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -108,7 +108,7 @@ public DeleteFeedbackSummaryOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -140,7 +140,7 @@ public FetchFeedbackSummaryOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackSummaryResource.cs b/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackSummaryResource.cs
index 9c30368f3..1530c8b83 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackSummaryResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackSummaryResource.cs
@@ -29,6 +29,8 @@ namespace Twilio.Rest.Api.V2010.Account.Call
public class FeedbackSummaryResource : Resource
{
+
+
[JsonConverter(typeof(StringEnumConverter))]
public sealed class StatusEnum : StringEnum
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/NotificationOptions.cs b/src/Twilio/Rest/Api/V2010/Account/Call/NotificationOptions.cs
index c3f168a3b..10c0da846 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/NotificationOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/NotificationOptions.cs
@@ -49,7 +49,7 @@ public FetchNotificationOptions(string pathCallSid, string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -93,7 +93,7 @@ public ReadNotificationOptions(string pathCallSid)
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/NotificationResource.cs b/src/Twilio/Rest/Api/V2010/Account/Call/NotificationResource.cs
index c3e7aa4f5..104afe0c1 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/NotificationResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/NotificationResource.cs
@@ -30,6 +30,8 @@ public class NotificationResource : Resource
{
+
+
private static Request BuildFetchRequest(FetchNotificationOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/PaymentOptions.cs b/src/Twilio/Rest/Api/V2010/Account/Call/PaymentOptions.cs
index 2ddaa5403..a64f9bfb5 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/PaymentOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/PaymentOptions.cs
@@ -96,7 +96,7 @@ public CreatePaymentOptions(string pathCallSid, string idempotencyKey, Uri statu
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -211,7 +211,7 @@ public UpdatePaymentOptions(string pathCallSid, string pathSid, string idempoten
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/PaymentResource.cs b/src/Twilio/Rest/Api/V2010/Account/Call/PaymentResource.cs
index bf60b926b..6b22a568f 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/PaymentResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/PaymentResource.cs
@@ -29,6 +29,8 @@ namespace Twilio.Rest.Api.V2010.Account.Call
public class PaymentResource : Resource
{
+
+
public sealed class StatusEnum : StringEnum
{
private StatusEnum(string value) : base(value) {}
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/RecordingOptions.cs b/src/Twilio/Rest/Api/V2010/Account/Call/RecordingOptions.cs
index 784275381..c04f6d6ca 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/RecordingOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/RecordingOptions.cs
@@ -63,7 +63,7 @@ public CreateRecordingOptions(string pathCallSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -122,7 +122,7 @@ public DeleteRecordingOptions(string pathCallSid, string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -159,7 +159,7 @@ public FetchRecordingOptions(string pathCallSid, string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -200,7 +200,7 @@ public ReadRecordingOptions(string pathCallSid)
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -263,7 +263,7 @@ public UpdateRecordingOptions(string pathCallSid, string pathSid, RecordingResou
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/RecordingResource.cs b/src/Twilio/Rest/Api/V2010/Account/Call/RecordingResource.cs
index 1e707cfc1..b98f2bc74 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/RecordingResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/RecordingResource.cs
@@ -29,6 +29,8 @@ namespace Twilio.Rest.Api.V2010.Account.Call
public class RecordingResource : Resource
{
+
+
[JsonConverter(typeof(StringEnumConverter))]
public sealed class StatusEnum : StringEnum
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/SiprecOptions.cs b/src/Twilio/Rest/Api/V2010/Account/Call/SiprecOptions.cs
index 4a9a314d0..929c529c2 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/SiprecOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/SiprecOptions.cs
@@ -653,7 +653,7 @@ public CreateSiprecOptions(string pathCallSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -1505,7 +1505,7 @@ public UpdateSiprecOptions(string pathCallSid, string pathSid, SiprecResource.Up
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/SiprecResource.cs b/src/Twilio/Rest/Api/V2010/Account/Call/SiprecResource.cs
index c260796b3..acf2c6870 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/SiprecResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/SiprecResource.cs
@@ -29,6 +29,8 @@ namespace Twilio.Rest.Api.V2010.Account.Call
public class SiprecResource : Resource
{
+
+
[JsonConverter(typeof(StringEnumConverter))]
public sealed class StatusEnum : StringEnum
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/StreamOptions.cs b/src/Twilio/Rest/Api/V2010/Account/Call/StreamOptions.cs
index 1d78e0420..e3ada0445 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/StreamOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/StreamOptions.cs
@@ -655,7 +655,7 @@ public CreateStreamOptions(string pathCallSid, Uri url)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -1507,7 +1507,7 @@ public UpdateStreamOptions(string pathCallSid, string pathSid, StreamResource.Up
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/StreamResource.cs b/src/Twilio/Rest/Api/V2010/Account/Call/StreamResource.cs
index 75ca5cc5e..595fa0e71 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/StreamResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/StreamResource.cs
@@ -29,6 +29,8 @@ namespace Twilio.Rest.Api.V2010.Account.Call
public class StreamResource : Resource
{
+
+
[JsonConverter(typeof(StringEnumConverter))]
public sealed class StatusEnum : StringEnum
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageOptions.cs b/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageOptions.cs
index 4edecfb27..6634e6e3f 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageOptions.cs
@@ -52,7 +52,7 @@ public CreateUserDefinedMessageOptions(string pathCallSid, string content)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageResource.cs b/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageResource.cs
index 6cb720a52..87b21ecbc 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageResource.cs
@@ -30,6 +30,8 @@ public class UserDefinedMessageResource : Resource
{
+
+
private static Request BuildCreateRequest(CreateUserDefinedMessageOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageSubscriptionOptions.cs b/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageSubscriptionOptions.cs
index 842020da5..955a9d7f0 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageSubscriptionOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageSubscriptionOptions.cs
@@ -55,7 +55,7 @@ public CreateUserDefinedMessageSubscriptionOptions(string pathCallSid, Uri callb
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -102,7 +102,7 @@ public DeleteUserDefinedMessageSubscriptionOptions(string pathCallSid, string pa
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageSubscriptionResource.cs b/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageSubscriptionResource.cs
index 9a1091fa1..d505d7f44 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageSubscriptionResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Call/UserDefinedMessageSubscriptionResource.cs
@@ -30,6 +30,8 @@ public class UserDefinedMessageSubscriptionResource : Resource
{
+
+
private static Request BuildCreateRequest(CreateUserDefinedMessageSubscriptionOptions options, ITwilioRestClient client)
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/CallOptions.cs b/src/Twilio/Rest/Api/V2010/Account/CallOptions.cs
index b21ce5f56..d886a9e30 100644
--- a/src/Twilio/Rest/Api/V2010/Account/CallOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/CallOptions.cs
@@ -150,7 +150,7 @@ public CreateCallOptions(IEndpoint to, IEndpoint from)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -320,7 +320,7 @@ public DeleteCallOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -352,7 +352,7 @@ public FetchCallOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -405,7 +405,7 @@ public class ReadCallOptions : ReadOptions
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -513,7 +513,7 @@ public UpdateCallOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/CallResource.cs b/src/Twilio/Rest/Api/V2010/Account/CallResource.cs
index 10b6b15d1..5fc6e2dbd 100644
--- a/src/Twilio/Rest/Api/V2010/Account/CallResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/CallResource.cs
@@ -29,6 +29,8 @@ namespace Twilio.Rest.Api.V2010.Account
public class CallResource : Resource
{
+
+
[JsonConverter(typeof(StringEnumConverter))]
public sealed class StatusEnum : StringEnum
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/Conference/ParticipantOptions.cs b/src/Twilio/Rest/Api/V2010/Account/Conference/ParticipantOptions.cs
index 840a4ac86..e9dd5b263 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Conference/ParticipantOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Conference/ParticipantOptions.cs
@@ -193,7 +193,7 @@ public CreateParticipantOptions(string pathConferenceSid, IEndpoint from, IEndpo
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -416,7 +416,7 @@ public DeleteParticipantOptions(string pathConferenceSid, string pathCallSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -453,7 +453,7 @@ public FetchParticipantOptions(string pathConferenceSid, string pathCallSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -494,7 +494,7 @@ public ReadParticipantOptions(string pathConferenceSid)
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -582,7 +582,7 @@ public UpdateParticipantOptions(string pathConferenceSid, string pathCallSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/Conference/ParticipantResource.cs b/src/Twilio/Rest/Api/V2010/Account/Conference/ParticipantResource.cs
index e61402955..d579b6a69 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Conference/ParticipantResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Conference/ParticipantResource.cs
@@ -29,6 +29,8 @@ namespace Twilio.Rest.Api.V2010.Account.Conference
public class ParticipantResource : Resource
{
+
+
[JsonConverter(typeof(StringEnumConverter))]
public sealed class StatusEnum : StringEnum
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/Conference/RecordingOptions.cs b/src/Twilio/Rest/Api/V2010/Account/Conference/RecordingOptions.cs
index 2948ba9a7..8013ee3d9 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Conference/RecordingOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Conference/RecordingOptions.cs
@@ -49,7 +49,7 @@ public DeleteRecordingOptions(string pathConferenceSid, string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -86,7 +86,7 @@ public FetchRecordingOptions(string pathConferenceSid, string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -127,7 +127,7 @@ public ReadRecordingOptions(string pathConferenceSid)
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -190,7 +190,7 @@ public UpdateRecordingOptions(string pathConferenceSid, string pathSid, Recordin
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/Conference/RecordingResource.cs b/src/Twilio/Rest/Api/V2010/Account/Conference/RecordingResource.cs
index c6b0be8cf..540bcf8a2 100644
--- a/src/Twilio/Rest/Api/V2010/Account/Conference/RecordingResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/Conference/RecordingResource.cs
@@ -29,6 +29,8 @@ namespace Twilio.Rest.Api.V2010.Account.Conference
public class RecordingResource : Resource
{
+
+
[JsonConverter(typeof(StringEnumConverter))]
public sealed class StatusEnum : StringEnum
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/ConferenceOptions.cs b/src/Twilio/Rest/Api/V2010/Account/ConferenceOptions.cs
index 18eb9be41..d823063f1 100644
--- a/src/Twilio/Rest/Api/V2010/Account/ConferenceOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/ConferenceOptions.cs
@@ -44,7 +44,7 @@ public FetchConferenceOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -91,7 +91,7 @@ public class ReadConferenceOptions : ReadOptions
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -173,7 +173,7 @@ public UpdateConferenceOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/ConferenceResource.cs b/src/Twilio/Rest/Api/V2010/Account/ConferenceResource.cs
index e73b6b6bf..f467f2883 100644
--- a/src/Twilio/Rest/Api/V2010/Account/ConferenceResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/ConferenceResource.cs
@@ -29,6 +29,8 @@ namespace Twilio.Rest.Api.V2010.Account
public class ConferenceResource : Resource
{
+
+
[JsonConverter(typeof(StringEnumConverter))]
public sealed class StatusEnum : StringEnum
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/ConnectAppOptions.cs b/src/Twilio/Rest/Api/V2010/Account/ConnectAppOptions.cs
index 37122ffc0..4838bd29b 100644
--- a/src/Twilio/Rest/Api/V2010/Account/ConnectAppOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/ConnectAppOptions.cs
@@ -44,7 +44,7 @@ public DeleteConnectAppOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -76,7 +76,7 @@ public FetchConnectAppOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -99,7 +99,7 @@ public class ReadConnectAppOptions : ReadOptions
/// Generate the necessary parameters
- public override List> GetParams()
+ public List> GetParams()
{
var p = new List>();
@@ -159,7 +159,7 @@ public UpdateConnectAppOptions(string pathSid)
/// Generate the necessary parameters
- public List> GetParams()
+ public List> GetParams()
{
var p = new List>();
diff --git a/src/Twilio/Rest/Api/V2010/Account/ConnectAppResource.cs b/src/Twilio/Rest/Api/V2010/Account/ConnectAppResource.cs
index 3d10c8666..0b9e49ff8 100644
--- a/src/Twilio/Rest/Api/V2010/Account/ConnectAppResource.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/ConnectAppResource.cs
@@ -29,6 +29,8 @@ namespace Twilio.Rest.Api.V2010.Account
public class ConnectAppResource : Resource
{
+
+
[JsonConverter(typeof(StringEnumConverter))]
public sealed class PermissionEnum : StringEnum
{
diff --git a/src/Twilio/Rest/Api/V2010/Account/IncomingPhoneNumber/AssignedAddOn/AssignedAddOnExtensionOptions.cs b/src/Twilio/Rest/Api/V2010/Account/IncomingPhoneNumber/AssignedAddOn/AssignedAddOnExtensionOptions.cs
index 6f559f18a..2bf038af5 100644
--- a/src/Twilio/Rest/Api/V2010/Account/IncomingPhoneNumber/AssignedAddOn/AssignedAddOnExtensionOptions.cs
+++ b/src/Twilio/Rest/Api/V2010/Account/IncomingPhoneNumber/AssignedAddOn/AssignedAddOnExtensionOptions.cs
@@ -54,7 +54,7 @@ public FetchAssignedAddOnExtensionOptions(string pathResourceSid, string pathAss
/// Generate the necessary parameters
- public List> GetParams()
+ public List