Open-IM-Server/pkg/base_info/cos_api_struct.go

19 lines
426 B

3 years ago
package base_info
import sts "github.com/tencentyun/qcloud-cos-sts-sdk/go"
type TencentCloudStorageCredentialReq struct {
OperationID string `json:"operationID"`
}
3 years ago
type TencentCloudStorageCredentialRespData struct {
3 years ago
*sts.CredentialResult
Region string `json:"region"`
Bucket string `json:"bucket"`
}
type TencentCloudStorageCredentialResp struct {
CommResp
3 years ago
Data TencentCloudStorageCredentialRespData `json:"data"`
3 years ago
}