Documentation
¶
Index ¶
Constants ¶
View Source
const APIVersion = "2021-01-11"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
func NewClient ¶
func NewClient(credential *common.Credential, region string, clientProfile *profile.ClientProfile) (client *Client, err error)
func NewClientWithSecretId ¶
Deprecated
func (*Client) DescribeSmsTemplateList ¶
func (c *Client) DescribeSmsTemplateList(request *DescribeSmsTemplateListRequest) (response *DescribeSmsTemplateListResponse, err error)
⚠️注意:个人认证用户不支持使用 API 查询短信正文模版,请参阅了解 [实名认证基本介绍](https://cloud.tencent.com/document/product/378/3629)。 >- 注:由于云 **API3.0 安全性**有所提升,所以**接口鉴权**较为复杂,建议使用 [SDK](https://cloud.tencent.com/document/product/382/43193) 来使用云短信服务。 >- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2019-07-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
type DescribeSmsTemplateListRequest ¶
type DescribeSmsTemplateListRequest struct {
*tchttp.BaseRequest
// 模板 ID 数组。
TemplateIdSet []*uint64 `json:"TemplateIdSet,omitempty" name:"TemplateIdSet" list`
// 是否国际/港澳台短信:
// 0:表示国内短信。
// 1:表示国际/港澳台短信。
International *uint64 `json:"International,omitempty" name:"International"`
}
func NewDescribeSmsTemplateListRequest ¶
func NewDescribeSmsTemplateListRequest() (request *DescribeSmsTemplateListRequest)
func (*DescribeSmsTemplateListRequest) FromJsonString ¶
func (r *DescribeSmsTemplateListRequest) FromJsonString(s string) error
It is highly **NOT** recommended to use this function because it has no param check, nor strict type check
func (*DescribeSmsTemplateListRequest) ToJsonString ¶
func (r *DescribeSmsTemplateListRequest) ToJsonString() string
type DescribeSmsTemplateListResponse ¶
type DescribeSmsTemplateListResponse struct {
*tchttp.BaseResponse
Response *struct {
// 获取短信模板信息响应
DescribeTemplateStatusSet []*DescribeTemplateListStatus `json:"DescribeTemplateStatusSet,omitempty" name:"DescribeTemplateStatusSet" list`
// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
RequestId *string `json:"RequestId,omitempty" name:"RequestId"`
} `json:"Response"`
}
func NewDescribeSmsTemplateListResponse ¶
func NewDescribeSmsTemplateListResponse() (response *DescribeSmsTemplateListResponse)
func (*DescribeSmsTemplateListResponse) FromJsonString ¶
func (r *DescribeSmsTemplateListResponse) FromJsonString(s string) error
It is highly **NOT** recommended to use this function because it has no param check, nor strict type check
func (*DescribeSmsTemplateListResponse) ToJsonString ¶
func (r *DescribeSmsTemplateListResponse) ToJsonString() string
type DescribeTemplateListStatus ¶
type DescribeTemplateListStatus struct {
// 模板Id
TemplateId *uint64 `json:"TemplateId,omitempty" name:"TemplateId"`
// 是否国际/港澳台短信:
// 0:表示国内短信。
// 1:表示国际/港澳台短信。
International *uint64 `json:"International,omitempty" name:"International"`
// 申请签名状态。其中:
// 0:表示审核通过。
// 1:表示审核中。
// -1:表示审核未通过或审核失败。
StatusCode *int64 `json:"StatusCode,omitempty" name:"StatusCode"`
// 审核回复,审核人员审核后给出的回复,通常是审核未通过的原因。
ReviewReply *string `json:"ReviewReply,omitempty" name:"ReviewReply"`
// 模板名称。
TemplateName *string `json:"TemplateName,omitempty" name:"TemplateName"`
// 提交审核时间,UNIX 时间戳(单位:秒)。
CreateTime *uint64 `json:"CreateTime,omitempty" name:"CreateTime"`
}
Click to show internal directories.
Click to hide internal directories.