mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 11:22:10 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			426 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			426 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package base_info
 | 
						|
 | 
						|
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 {
 | 
						|
	CommResp
 | 
						|
	Data TencentCloudStorageCredentialRespData `json:"data"`
 | 
						|
}
 |