1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.xcong.excoin.modules.newPrice;
|
| import lombok.Data;
|
| @Data
| public class OKXAccount {
|
| String passPhrase;
| boolean isSimluate;
| public String baseUrl;
| public RequestHandler requestHandler;
| public boolean showLimitUsage;
|
| public OKXAccount(){}
|
| public OKXAccount(String baseUrl, String apiKey, String secretKey, String passPhrase,boolean isSimluate) {
| this.baseUrl = baseUrl;
| this.requestHandler = new RequestHandler(apiKey, secretKey,passPhrase);
| this.isSimluate = isSimluate;
| }
| }
|
|