MarketPlace: pagination updates

Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
nfel 2025-02-12 13:54:14 +03:30
parent fd4c1da9a4
commit bb1ba83cf1
Signed by: nfel
GPG Key ID: DCC0BF3F92B0D45F
2 changed files with 4 additions and 3 deletions

View File

@ -22,9 +22,9 @@ message PaginationReq {
message PaginationResp { message PaginationResp {
uint32 page = 1; // in query param it will be p uint32 no = 1;
uint32 page_size = 2; // in query param it will be pz uint32 size = 2;
optional uint32 total_count = 3; // reponse optional uint32 count = 3;
} }
message BaseQueryParam { message BaseQueryParam {

View File

@ -52,6 +52,7 @@ message PurchaseRes {
} }
message MarketOrderList { message MarketOrderList {
base.v1.PaginationResp page = 2;
repeated MarketOrder list = 1; repeated MarketOrder list = 1;
} }