mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
20 lines
460 B
Go
20 lines
460 B
Go
package apistruct
|
|
|
|
import sts "github.com/tencentyun/qcloud-cos-sts-sdk/go"
|
|
|
|
type TencentCloudStorageCredentialReq struct {
|
|
OperationID string `json:"operationID"`
|
|
}
|
|
|
|
type TencentCloudStorageCredentialRespData struct {
|
|
*sts.CredentialResult
|
|
Region string `json:"region"`
|
|
Bucket string `json:"bucket"`
|
|
}
|
|
|
|
type TencentCloudStorageCredentialResp struct {
|
|
CosData TencentCloudStorageCredentialRespData `json:"-"`
|
|
|
|
Data map[string]interface{} `json:"data"`
|
|
}
|