Documentation
¶
Index ¶
- type AggReceiptList
- type AggReceiptStatus
- type AggReceiptStatusSpec
- type AggSendStatus
- type AggSendStatusSpec
- type MoSms
- type MtSms
- type Name
- type PullMoMsg
- type PullMoMsgByMobile
- type PullMoMsgByMobileSpec
- type PullMoMsgSpec
- type PullMtMsg
- type PullMtMsgByMobile
- type PullMtMsgByMobileSpec
- type PullMtMsgSpec
- type RespAddSdkSmsSignData
- type RespAddSdkSmsTemplateData
- type RespQuerySdkSmsSignStatusData
- type RespQuerySdkSmsTemplateStatusData
- type SendBatchSms
- type SendBatchSmsSpec
- type SendSingleSms
- type SendSingleSmsSpec
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AggReceiptList ¶
type AggReceiptList struct {
/* 用户pin (Optional) */
Pin string `json:"pin"`
/* 应用Id (Optional) */
AppId string `json:"appId"`
/* 发送量 (Optional) */
SendCount int `json:"sendCount"`
/* 回执量 (Optional) */
ReceiptCount int `json:"receiptCount"`
/* 未回执量 (Optional) */
NoReceiptCount int `json:"noReceiptCount"`
/* 回执成功量 (Optional) */
ReceiptSuccessCount int `json:"receiptSuccessCount"`
/* 回执失败量 (Optional) */
ReceiptFailureCount int `json:"receiptFailureCount"`
/* 回执率 (Optional) */
ReceiptRate string `json:"receiptRate"`
/* 回执成功率 (Optional) */
ReceiptSuccessRate string `json:"receiptSuccessRate"`
/* 统计日期 (Optional) */
AggTime string `json:"aggTime"`
}
type AggReceiptStatus ¶
type AggReceiptStatus struct {
/* 回执总量 (Optional) */
TotalReceiptCount int `json:"totalReceiptCount"`
/* 未回执总量 (Optional) */
TotalNoReceiptCount int `json:"totalNoReceiptCount"`
/* 回执成功总量 (Optional) */
TotalReceiptSuccessCount int `json:"totalReceiptSuccessCount"`
/* 回执失败总量 (Optional) */
TotalReceiptFailureCount int `json:"totalReceiptFailureCount"`
/* 回执统计明细 (Optional) */
List []AggReceiptList `json:"list"`
}
type AggReceiptStatusSpec ¶
type AggSendStatus ¶
type AggSendStatus struct {
/* 用户pin (Optional) */
Pin string `json:"pin"`
/* 应用Id (Optional) */
AppId string `json:"appId"`
/* 发送量 (Optional) */
SendCount int `json:"sendCount"`
/* 成功量 (Optional) */
SuccessCount int `json:"successCount"`
/* 计费量 (Optional) */
BillingCount int `json:"billingCount"`
/* 成功率 (Optional) */
SuccessRate string `json:"successRate"`
/* 统计日期 (Optional) */
AggTime string `json:"aggTime"`
}
type AggSendStatusSpec ¶
type MoSms ¶
type MoSms struct {
/* 签名ID (Optional) */
SignId string `json:"signId"`
/* 用户pin (Optional) */
Pin string `json:"pin"`
/* 应用ID (Optional) */
AppId string `json:"appId"`
/* 回复消息内容 (Optional) */
MsgContent string `json:"msgContent"`
/* 手机号 (Optional) */
MobileNum string `json:"mobileNum"`
/* 扩展码 (Optional) */
ExpandNum string `json:"expandNum"`
}
type MtSms ¶
type MtSms struct {
/* 用户pin (Optional) */
Pin string `json:"pin"`
/* 扩展码 (Optional) */
ExpandNum string `json:"expandNum"`
/* 手机号 (Optional) */
MobileNum string `json:"mobileNum"`
/* 应用ID (Optional) */
AppId string `json:"appId"`
/* 套餐包ID (Optional) */
PackageId string `json:"packageId"`
/* 签名ID (Optional) */
SignId string `json:"signId"`
/* 模板ID (Optional) */
TemplateId string `json:"templateId"`
/* 消息内容 (Optional) */
MsgContent string `json:"msgContent"`
/* 批次ID (Optional) */
OrderId string `json:"orderId"`
/* 错误码 (Optional) */
Code int `json:"code"`
/* 流水号 (Optional) */
ReceiptNum string `json:"receiptNum"`
/* 拆分标识 (Optional) */
SplitFlag string `json:"splitFlag"`
/* 发送状态 (Optional) */
Status string `json:"status"`
/* 类型 (Optional) */
Type string `json:"type"`
}
type PullMoMsgByMobile ¶
type PullMoMsgByMobileSpec ¶
type PullMoMsgSpec ¶
type PullMtMsgByMobile ¶
type PullMtMsgByMobileSpec ¶
type PullMtMsgSpec ¶
type RespAddSdkSmsSignData ¶
type RespAddSdkSmsSignData struct {
/* signId参数 (Optional) */
SignId string `json:"signId"`
}
type RespAddSdkSmsTemplateData ¶
type RespAddSdkSmsTemplateData struct {
/* templateId参数 (Optional) */
TemplateId string `json:"templateId"`
}
type RespQuerySdkSmsSignStatusData ¶
type RespQuerySdkSmsSignStatusData struct {
/* reason参数 (Optional) */
Reason string `json:"reason"`
/* sign_card_type参数 (Optional) */
Sign_card_type string `json:"sign_card_type"`
/* purpose参数 (Optional) */
Purpose string `json:"purpose"`
/* name参数 (Optional) */
Name string `json:"name"`
/* description参数 (Optional) */
Description string `json:"description"`
/* sign_no参数 (Optional) */
Sign_no string `json:"sign_no"`
/* type参数 (Optional) */
Type string `json:"type"`
/* sign_url参数 (Optional) */
Sign_url string `json:"sign_url"`
/* status参数 (Optional) */
Status string `json:"status"`
}
type RespQuerySdkSmsTemplateStatusData ¶
type RespQuerySdkSmsTemplateStatusData struct {
/* template参数 (Optional) */
Template string `json:"template"`
/* reason参数 (Optional) */
Reason string `json:"reason"`
/* name参数 (Optional) */
Name string `json:"name"`
/* auditor参数 (Optional) */
Auditor string `json:"auditor"`
/* type参数 (Optional) */
Type string `json:"type"`
/* status参数 (Optional) */
Status string `json:"status"`
}
type SendBatchSms ¶
type SendBatchSmsSpec ¶
type SendSingleSms ¶
Source Files
¶
- AggReceiptList.go
- AggReceiptStatus.go
- AggReceiptStatusSpec.go
- AggSendStatus.go
- AggSendStatusSpec.go
- MoSms.go
- MtSms.go
- Name.go
- PullMoMsg.go
- PullMoMsgByMobile.go
- PullMoMsgByMobileSpec.go
- PullMoMsgSpec.go
- PullMtMsg.go
- PullMtMsgByMobile.go
- PullMtMsgByMobileSpec.go
- PullMtMsgSpec.go
- RespAddSdkSmsSignData.go
- RespAddSdkSmsTemplateData.go
- RespQuerySdkSmsSignStatusData.go
- RespQuerySdkSmsTemplateStatusData.go
- SendBatchSms.go
- SendBatchSmsSpec.go
- SendSingleSms.go
- SendSingleSmsSpec.go
Click to show internal directories.
Click to hide internal directories.