models

package
v1.9.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 30, 2019 License: Apache-2.0 Imports: 0 Imported by: 0

Documentation

Index

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 AggReceiptStatusSpec struct {

	/* 应用Id  */
	AppId string `json:"appId"`

	/* 开始日期  */
	StartTime string `json:"startTime"`

	/* 结束日期  */
	EndTime string `json:"endTime"`
}

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 AggSendStatusSpec struct {

	/* 应用Id  */
	AppId string `json:"appId"`

	/* 开始日期  */
	StartTime string `json:"startTime"`

	/* 结束日期  */
	EndTime string `json:"endTime"`
}

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 Name

type Name struct {

	/* 用户name  */
	Name string `json:"name"`
}

type PullMoMsg

type PullMoMsg struct {

	/* 总量 (Optional) */
	Total int `json:"total"`

	/* 本次拉取的数量 (Optional) */
	Size int `json:"size"`

	/* 发送信息明细列表 (Optional) */
	DetailList []MoSms `json:"detailList"`
}

type PullMoMsgByMobile

type PullMoMsgByMobile struct {

	/* 总量 (Optional) */
	Total int `json:"total"`

	/* 本次拉取的数量 (Optional) */
	Size int `json:"size"`

	/* 发送信息明细列表 (Optional) */
	DetailList []MoSms `json:"detailList"`
}

type PullMoMsgByMobileSpec

type PullMoMsgByMobileSpec struct {

	/* 应用Id  */
	AppId string `json:"appId"`

	/* 拉取最大条数  */
	Max int `json:"max"`

	/* 手机号码  */
	MobileNum string `json:"mobileNum"`
}

type PullMoMsgSpec

type PullMoMsgSpec struct {

	/* 应用Id  */
	AppId string `json:"appId"`

	/* 拉取最大条数  */
	Max int `json:"max"`
}

type PullMtMsg

type PullMtMsg struct {

	/* 总量 (Optional) */
	Total int `json:"total"`

	/* 本次拉取的数量 (Optional) */
	Size int `json:"size"`

	/* 发送信息明细列表 (Optional) */
	DetailList []MtSms `json:"detailList"`
}

type PullMtMsgByMobile

type PullMtMsgByMobile struct {

	/* 总量 (Optional) */
	Total int `json:"total"`

	/* 本次拉取的数量 (Optional) */
	Size int `json:"size"`

	/* 发送信息明细列表 (Optional) */
	DetailList []MtSms `json:"detailList"`
}

type PullMtMsgByMobileSpec

type PullMtMsgByMobileSpec struct {

	/* 应用Id  */
	AppId string `json:"appId"`

	/* 拉取最大条数  */
	Max int `json:"max"`

	/* 手机号码  */
	MobileNum string `json:"mobileNum"`
}

type PullMtMsgSpec

type PullMtMsgSpec struct {

	/* 应用Id  */
	AppId string `json:"appId"`

	/* 拉取最大条数  */
	Max int `json:"max"`
}

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 SendBatchSms struct {

	/* 请求状态 (Optional) */
	Status bool `json:"status"`

	/* 错误码 (Optional) */
	Code string `json:"code"`

	/* 错误消息 (Optional) */
	Message string `json:"message"`
}

type SendBatchSmsSpec

type SendBatchSmsSpec struct {

	/* 应用Id  */
	AppId string `json:"appId"`

	/* 短信签名名称  */
	Sign string `json:"sign"`

	/* 模板Id  */
	TemplateId string `json:"templateId"`

	/* 群发的国内电话号码,群发时一次最多不要超过200个手机号  */
	Phone []string `json:"phone"`

	/* 短信模板变量对应的数据值,Array格式 (Optional) */
	Params []string `json:"params"`
}

type SendSingleSms

type SendSingleSms struct {

	/* 请求状态 (Optional) */
	Status bool `json:"status"`

	/* 错误码 (Optional) */
	Code string `json:"code"`

	/* 错误消息 (Optional) */
	Message string `json:"message"`
}

type SendSingleSmsSpec

type SendSingleSmsSpec struct {

	/* 应用Id  */
	AppId string `json:"appId"`

	/* 短信签名名称  */
	Sign string `json:"sign"`

	/* 模板Id  */
	TemplateId string `json:"templateId"`

	/* 国内电话号码  */
	Phone string `json:"phone"`

	/* 短信模板变量对应的数据值,Array格式 (Optional) */
	Params []string `json:"params"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL