-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Librarian] Regenerated @ 08c0904bec7ba6e5da9e5db6c4e0f74dfc97fb10
- Loading branch information
Showing
12 changed files
with
542 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
|
||
|
||
|
||
} | ||
|
||
|
||
} | ||
|
Oops, something went wrong.