-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add API to request list of payments (#17)
--------- Co-authored-by: kody-joao <[email protected]>
- Loading branch information
1 parent
da22939
commit a79ca18
Showing
3 changed files
with
67 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name: release | |
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
- '[0-9]+.[0-9]+.[0-9]+' | ||
|
||
jobs: | ||
dispatch: | ||
|
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
11 changes: 11 additions & 0 deletions
11
src/main/proto/com/kodypay/grpc/sdk/common/pagination.proto
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,11 @@ | ||
syntax = "proto3"; | ||
package com.kodypay.grpc.sdk.common; | ||
option java_multiple_files = true; | ||
option java_outer_classname = "KodySdkCommonProto"; | ||
option java_package = "com.kodypay.grpc.sdk.common"; | ||
import "google/protobuf/timestamp.proto"; | ||
|
||
message PageCursor { | ||
int64 page = 1; | ||
int64 page_size = 2; | ||
} |