2023-01-30 15:28:46 +08:00
|
|
|
package api_struct
|
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"`
|
|
|
|
|
}
|