Documentation ¶
Index ¶
- func Consume(clt *core.Client, id *CardItemIdentifier) (cardId, openId string, err error)
- func Decrypt(clt *core.Client, encryptCode string) (code string, err error)
- func Unavailable(clt *core.Client, id *CardItemIdentifier) (err error)
- func Update(clt *core.Client, id *CardItemIdentifier, newCode string) (err error)
- type CardItem
- type CardItemIdentifier
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CardItem ¶
type CardItem struct { Code string `json:"code"` // 卡券的Code码 OpenId string `json:"openid"` // 用户openid Card struct { CardId string `json:"card_id"` // 卡券ID BeginTime int64 `json:"begin_time"` // 起始使用时间 EndTime int64 `json:"end_time"` // 结束时间 } `json:"card"` }
某一张特定卡券的信息
type CardItemIdentifier ¶
type CardItemIdentifier struct { Code string `json:"code"` // 卡券的Code码 CardId string `json:"card_id,omitempty"` // 卡券ID。创建卡券时use_custom_code填写true时必填。非自定义Code不必填写。 }
某一张特定卡券的标识
Click to show internal directories.
Click to hide internal directories.