proto: add creation data filters in ListPaymentsRequest

This commit is contained in:
yyforyongyu 2022-11-16 02:07:37 +08:00
parent 234b9a3d97
commit b7c829f792
No known key found for this signature in database
GPG key ID: 9BCD95C4FF296868
3 changed files with 973 additions and 923 deletions

File diff suppressed because it is too large Load diff

View file

@ -3841,6 +3841,14 @@ message ListPaymentsRequest {
of payments, as all of them have to be iterated through to be counted.
*/
bool count_total_payments = 5;
// If set, returns all invoices with a creation date greater than or euqal
// to it. Measured in seconds since the unix epoch.
uint64 creation_date_start = 6;
// If set, returns all invoices with a creation date less than or euqal to
// it. Measured in seconds since the unix epoch.
uint64 creation_date_end = 7;
}
message ListPaymentsResponse {

View file

@ -2143,6 +2143,22 @@
"in": "query",
"required": false,
"type": "boolean"
},
{
"name": "creation_date_start",
"description": "If set, returns all invoices with a creation date greater than or euqal\nto it. Measured in seconds since the unix epoch.",
"in": "query",
"required": false,
"type": "string",
"format": "uint64"
},
{
"name": "creation_date_end",
"description": "If set, returns all invoices with a creation date less than or euqal to\nit. Measured in seconds since the unix epoch.",
"in": "query",
"required": false,
"type": "string",
"format": "uint64"
}
],
"tags": [