You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
459 B
22 lines
459 B
2 years ago
|
package base_info
|
||
|
|
||
|
type SetClientInitConfigReq struct {
|
||
|
OperationID string `json:"operationID" binding:"required"`
|
||
|
DiscoverPageURL *string `json:"discoverPageURL"`
|
||
|
}
|
||
|
|
||
|
type SetClientInitConfigResp struct {
|
||
|
CommResp
|
||
|
}
|
||
|
|
||
|
type GetClientInitConfigReq struct {
|
||
|
OperationID string `json:"operationID" binding:"required"`
|
||
|
}
|
||
|
|
||
|
type GetClientInitConfigResp struct {
|
||
|
CommResp
|
||
|
Data struct {
|
||
|
DiscoverPageURL string `json:"discoverPageURL"`
|
||
|
} `json:"data"`
|
||
|
}
|