@@ -37,7 +37,7 @@ public final class LogsGetRequest {
3737
3838 private final Optional <String > callId ;
3939
40- private final Optional <Double > page ;
40+ private final Optional <Integer > page ;
4141
4242 private final Optional <LogsGetRequestSortOrder > sortOrder ;
4343
@@ -69,7 +69,7 @@ private LogsGetRequest(
6969 Optional <String > customerId ,
7070 Optional <String > squadId ,
7171 Optional <String > callId ,
72- Optional <Double > page ,
72+ Optional <Integer > page ,
7373 Optional <LogsGetRequestSortOrder > sortOrder ,
7474 Optional <Double > limit ,
7575 Optional <OffsetDateTime > createdAtGt ,
@@ -162,7 +162,7 @@ public Optional<String> getCallId() {
162162 * @return This is the page number to return. Defaults to 1.
163163 */
164164 @ JsonProperty ("page" )
165- public Optional <Double > getPage () {
165+ public Optional <Integer > getPage () {
166166 return page ;
167167 }
168168
@@ -326,7 +326,7 @@ public static final class Builder {
326326
327327 private Optional <String > callId = Optional .empty ();
328328
329- private Optional <Double > page = Optional .empty ();
329+ private Optional <Integer > page = Optional .empty ();
330330
331331 private Optional <LogsGetRequestSortOrder > sortOrder = Optional .empty ();
332332
@@ -453,12 +453,12 @@ public Builder callId(String callId) {
453453 }
454454
455455 @ JsonSetter (value = "page" , nulls = Nulls .SKIP )
456- public Builder page (Optional <Double > page ) {
456+ public Builder page (Optional <Integer > page ) {
457457 this .page = page ;
458458 return this ;
459459 }
460460
461- public Builder page (Double page ) {
461+ public Builder page (Integer page ) {
462462 this .page = Optional .ofNullable (page );
463463 return this ;
464464 }
0 commit comments