feat(115): update upload api to v4.0 add pagesize option (#3840 close #3753)

This commit is contained in:
sheltonzhu
2023-03-13 20:02:52 +08:00
committed by GitHub
parent 301756ba03
commit 4741a75c92
4 changed files with 11 additions and 7 deletions

View File

@ -6,8 +6,9 @@ import (
)
type Addition struct {
Cookie string `json:"cookie"`
QRCodeToken string `json:"qrcode_token"`
Cookie string `json:"cookie" type:"text" help:"one of QR code token and cookie required"`
QRCodeToken string `json:"qrcode_token" type:"text" help:"one of QR code token and cookie required"`
PageSize int64 `json:"page_size" type:"number" default:"56" help:"list api per page size of 115 driver"`
driver.RootID
}