11 lines
476 B
Go

package params
type SmsSend struct {
//SendType int `json:"send_type" binding:"required"`
Phone []string `json:"phone" binding:"required"`
Content string `json:"content" binding:"required"`
AccessKeyId string `json:"access_key_id" example:"LTAI5tBzohLQvNcEh3HZjnWi"`
AccessKeySecret string `json:"access_key_secret" example:"XMyTwsKBjubwTMHqUVyPZCYvQFuXZA"`
RegionId string `json:"region_id" example:"ap-southeast-1"`
}