Skip to content

Commit

Permalink
[Librarian] Regenerated @ 08c0904bec7ba6e5da9e5db6c4e0f74dfc97fb10
Browse files Browse the repository at this point in the history
  • Loading branch information
twilio-dx committed Dec 14, 2023
1 parent a73770e commit 5f5816f
Show file tree
Hide file tree
Showing 12 changed files with 542 additions and 38 deletions.
24 changes: 24 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
twilio-csharp Changelog
=======================

[2023-12-14] Version 6.16.0
---------------------------
**Api**
- Updated service base url for connect apps and authorized connect apps APIs **(breaking change)**

**Events**
- Marked as GA

**Insights**
- decommission voice-qualitystats-endpoint role

**Numbers**
- Add Get Port In request api

**Taskrouter**
- Add `jitter_buffer_size` param in update reservation

**Trusthub**
- Add additional optional fields in compliance_tollfree_inquiry.json

**Verify**
- Remove `Tags` from Public Docs **(breaking change)**


[2023-12-05] Version 6.15.2
---------------------------
**Verify**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -301,14 +301,6 @@ public static string ToJson(object model)
[JsonProperty("connect_app_sid")]
public string ConnectAppSid { get; private set; }

///<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>
[JsonProperty("date_created")]
public DateTime? DateCreated { get; private set; }

///<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>
[JsonProperty("date_updated")]
public DateTime? DateUpdated { get; private set; }

///<summary> The set of permissions that you authorized for the Connect App. Can be: `get-all` or `post-all`. </summary>
[JsonProperty("permissions")]
public List<AuthorizedConnectAppResource.PermissionEnum> Permissions { get; private set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
namespace Twilio.Rest.Events.V1.Subscription
{

/// <summary> Create a new Subscribed Event type for the subscription </summary>
/// <summary> Add an event type to a Subscription. </summary>
public class CreateSubscribedEventOptions : IOptions<SubscribedEventResource>
{

Expand All @@ -34,7 +34,7 @@ public class CreateSubscribedEventOptions : IOptions<SubscribedEventResource>
///<summary> Type of event being subscribed to. </summary>
public string Type { get; }

///<summary> The schema version that the subscription should use. </summary>
///<summary> The schema version that the Subscription should use. </summary>
public int? SchemaVersion { get; set; }


Expand Down Expand Up @@ -67,7 +67,7 @@ public List<KeyValuePair<string, string>> GetParams()


}
/// <summary> Remove an event type from a subscription. </summary>
/// <summary> Remove an event type from a Subscription. </summary>
public class DeleteSubscribedEventOptions : IOptions<SubscribedEventResource>
{

Expand Down Expand Up @@ -180,7 +180,7 @@ public class UpdateSubscribedEventOptions : IOptions<SubscribedEventResource>
///<summary> Type of event being subscribed to. </summary>
public string PathType { get; }

///<summary> The schema version that the subscription should use. </summary>
///<summary> The schema version that the Subscription should use. </summary>
public int? SchemaVersion { get; set; }


Expand Down
28 changes: 14 additions & 14 deletions src/Twilio/Rest/Events/V1/Subscription/SubscribedEventResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private static Request BuildCreateRequest(CreateSubscribedEventOptions options,
);
}

/// <summary> Create a new Subscribed Event type for the subscription </summary>
/// <summary> Add an event type to a Subscription. </summary>
/// <param name="options"> Create SubscribedEvent parameters </param>
/// <param name="client"> Client to make requests to Twilio </param>
/// <returns> A single instance of SubscribedEvent </returns>
Expand All @@ -63,7 +63,7 @@ public static SubscribedEventResource Create(CreateSubscribedEventOptions option
}

#if !NET35
/// <summary> Create a new Subscribed Event type for the subscription </summary>
/// <summary> Add an event type to a Subscription. </summary>
/// <param name="options"> Create SubscribedEvent parameters </param>
/// <param name="client"> Client to make requests to Twilio </param>
/// <returns> Task that resolves to A single instance of SubscribedEvent </returns>
Expand All @@ -76,10 +76,10 @@ public static async System.Threading.Tasks.Task<SubscribedEventResource> CreateA
}
#endif

/// <summary> Create a new Subscribed Event type for the subscription </summary>
/// <summary> Add an event type to a Subscription. </summary>
/// <param name="pathSubscriptionSid"> The unique SID identifier of the Subscription. </param>
/// <param name="type"> Type of event being subscribed to. </param>
/// <param name="schemaVersion"> The schema version that the subscription should use. </param>
/// <param name="schemaVersion"> The schema version that the Subscription should use. </param>
/// <param name="client"> Client to make requests to Twilio </param>
/// <returns> A single instance of SubscribedEvent </returns>
public static SubscribedEventResource Create(
Expand All @@ -93,10 +93,10 @@ public static SubscribedEventResource Create(
}

#if !NET35
/// <summary> Create a new Subscribed Event type for the subscription </summary>
/// <summary> Add an event type to a Subscription. </summary>
/// <param name="pathSubscriptionSid"> The unique SID identifier of the Subscription. </param>
/// <param name="type"> Type of event being subscribed to. </param>
/// <param name="schemaVersion"> The schema version that the subscription should use. </param>
/// <param name="schemaVersion"> The schema version that the Subscription should use. </param>
/// <param name="client"> Client to make requests to Twilio </param>
/// <returns> Task that resolves to A single instance of SubscribedEvent </returns>
public static async System.Threading.Tasks.Task<SubscribedEventResource> CreateAsync(
Expand All @@ -110,7 +110,7 @@ public static async System.Threading.Tasks.Task<SubscribedEventResource> CreateA
}
#endif

/// <summary> Remove an event type from a subscription. </summary>
/// <summary> Remove an event type from a Subscription. </summary>
/// <param name="options"> Delete SubscribedEvent parameters </param>
/// <param name="client"> Client to make requests to Twilio </param>
/// <returns> A single instance of SubscribedEvent </returns>
Expand All @@ -133,7 +133,7 @@ private static Request BuildDeleteRequest(DeleteSubscribedEventOptions options,
);
}

/// <summary> Remove an event type from a subscription. </summary>
/// <summary> Remove an event type from a Subscription. </summary>
/// <param name="options"> Delete SubscribedEvent parameters </param>
/// <param name="client"> Client to make requests to Twilio </param>
/// <returns> A single instance of SubscribedEvent </returns>
Expand All @@ -145,7 +145,7 @@ public static bool Delete(DeleteSubscribedEventOptions options, ITwilioRestClien
}

#if !NET35
/// <summary> Remove an event type from a subscription. </summary>
/// <summary> Remove an event type from a Subscription. </summary>
/// <param name="options"> Delete SubscribedEvent parameters </param>
/// <param name="client"> Client to make requests to Twilio </param>
/// <returns> Task that resolves to A single instance of SubscribedEvent </returns>
Expand All @@ -158,7 +158,7 @@ public static async System.Threading.Tasks.Task<bool> DeleteAsync(DeleteSubscrib
}
#endif

/// <summary> Remove an event type from a subscription. </summary>
/// <summary> Remove an event type from a Subscription. </summary>
/// <param name="pathSubscriptionSid"> The unique SID identifier of the Subscription. </param>
/// <param name="pathType"> Type of event being subscribed to. </param>
/// <param name="client"> Client to make requests to Twilio </param>
Expand All @@ -170,7 +170,7 @@ public static bool Delete(string pathSubscriptionSid, string pathType, ITwilioRe
}

#if !NET35
/// <summary> Remove an event type from a subscription. </summary>
/// <summary> Remove an event type from a Subscription. </summary>
/// <param name="pathSubscriptionSid"> The unique SID identifier of the Subscription. </param>
/// <param name="pathType"> Type of event being subscribed to. </param>
/// <param name="client"> Client to make requests to Twilio </param>
Expand Down Expand Up @@ -425,7 +425,7 @@ public static async System.Threading.Tasks.Task<SubscribedEventResource> UpdateA
/// <summary> Update an Event for a Subscription. </summary>
/// <param name="pathSubscriptionSid"> The unique SID identifier of the Subscription. </param>
/// <param name="pathType"> Type of event being subscribed to. </param>
/// <param name="schemaVersion"> The schema version that the subscription should use. </param>
/// <param name="schemaVersion"> The schema version that the Subscription should use. </param>
/// <param name="client"> Client to make requests to Twilio </param>
/// <returns> A single instance of SubscribedEvent </returns>
public static SubscribedEventResource Update(
Expand All @@ -442,7 +442,7 @@ public static SubscribedEventResource Update(
/// <summary> Update an Event for a Subscription. </summary>
/// <param name="pathSubscriptionSid"> The unique SID identifier of the Subscription. </param>
/// <param name="pathType"> Type of event being subscribed to. </param>
/// <param name="schemaVersion"> The schema version that the subscription should use. </param>
/// <param name="schemaVersion"> The schema version that the Subscription should use. </param>
/// <param name="client"> Client to make requests to Twilio </param>
/// <returns> Task that resolves to A single instance of SubscribedEvent </returns>
public static async System.Threading.Tasks.Task<SubscribedEventResource> UpdateAsync(
Expand Down Expand Up @@ -498,7 +498,7 @@ public static string ToJson(object model)
[JsonProperty("type")]
public string Type { get; private set; }

///<summary> The schema version that the subscription should use. </summary>
///<summary> The schema version that the Subscription should use. </summary>
[JsonProperty("schema_version")]
public int? SchemaVersion { get; private set; }

Expand Down
57 changes: 57 additions & 0 deletions src/Twilio/Rest/Numbers/V1/PortingPortInFetchOptions.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Numbers
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/


using System;
using System.Collections.Generic;
using Twilio.Base;
using Twilio.Converters;




namespace Twilio.Rest.Numbers.V1
{
/// <summary> Fetch a port in request by SID </summary>
public class FetchPortingPortInFetchOptions : IOptions<PortingPortInFetchResource>
{

///<summary> The SID of the Port In request. This is a unique identifier of the port in request. </summary>
public string PathPortInRequestSid { get; }



/// <summary> Construct a new FetchPortingPortInFetchOptions </summary>
/// <param name="pathPortInRequestSid"> The SID of the Port In request. This is a unique identifier of the port in request. </param>
public FetchPortingPortInFetchOptions(string pathPortInRequestSid)
{
PathPortInRequestSid = pathPortInRequestSid;
}


/// <summary> Generate the necessary parameters </summary>
public List<KeyValuePair<string, string>> GetParams()
{
var p = new List<KeyValuePair<string, string>>();

return p;
}



}


}

Loading

0 comments on commit 5f5816f

Please sign in to comment.