20 lines
261 B
Plaintext
20 lines
261 B
Plaintext
package voicemsgMgr
|
|
|
|
//语音配置参数
|
|
type VoiceMessageConfig struct {
|
|
//API密钥Id
|
|
SecretId string
|
|
|
|
//API密钥key
|
|
SecretKey string
|
|
|
|
//地域
|
|
Region string
|
|
|
|
//模板ID
|
|
TemplateId string
|
|
|
|
//应用后生成的实际SdkAppid
|
|
VoiceSdkAppid string
|
|
}
|