We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac0f984 commit 84eb978Copy full SHA for 84eb978
internal/model/account.go
@@ -7,4 +7,19 @@ type Account struct {
7
Driver string `json:"driver"`
8
Status string `json:"status"`
9
Addition string `json:"addition"`
10
+ Sort
11
+ Proxy
12
+}
13
+
14
+type Sort struct {
15
+ OrderBy string `json:"order_by"`
16
+ OrderDirection string `json:"order_direction"`
17
+ ExtractFolder string `json:"extract_folder"`
18
19
20
+type Proxy struct {
21
+ WebProxy string `json:"web_proxy"`
22
+ WebdavProxy bool `json:"webdav_proxy"`
23
+ WebdavDirect bool `json:"webdav_direct"`
24
+ DownProxyUrl string `json:"down_proxy_url"`
25
}
0 commit comments