2023-02-09 16:11:18 +08:00
|
|
|
package apistruct
|
2022-08-21 21:54:32 +08:00
|
|
|
|
|
|
|
|
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"`
|
|
|
|
|
}
|