8000 chore: convert pageSize from int to long (#776) · twilio/twilio-csharp@8ab9a6d · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8ab9a6d

Browse files
chore: convert pageSize from int to long (#776)
1 parent 2ce5bdd commit 8ab9a6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Twilio/Base/IOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ public interface IOptions<T> where T : Resource
2323
/// <typeparam name="T">Resource type</typeparam>
2424
public abstract class ReadOptions<T> : IOptions<T> where T : Resource
2525
{
26-
private int? _pageSize;
26+
private long? _pageSize;
2727

2828
/// <summary>
2929
/// Page size to read
3030
/// </summary>
31-
public int? PageSize
31+
public long? PageSize
3232
{
3333
get { return _pageSize; }
3434
set

0 commit comments

Comments
 (0)
0