openkf
This commit is contained in:
parent
aed2f871f0
commit
2d5f373bea
|
@ -0,0 +1,11 @@
|
||||||
|
package qyweixin
|
||||||
|
|
||||||
|
type AppCustomer struct {
|
||||||
|
App
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewAppCustomer(cfg *AppConfig) *AppCustomer {
|
||||||
|
return &AppCustomer{
|
||||||
|
App: *NewApp(cfg),
|
||||||
|
}
|
||||||
|
}
|
|
@ -116,6 +116,11 @@ type MixMessage struct {
|
||||||
ScanResult string `xml:"ScanResult"`
|
ScanResult string `xml:"ScanResult"`
|
||||||
} `xml:"ScanCodeInfo"`
|
} `xml:"ScanCodeInfo"`
|
||||||
|
|
||||||
|
// 企业微信客服相关
|
||||||
|
OpenKfId string `xml:"OpenKfId"`
|
||||||
|
Token string `xml:"Token"`
|
||||||
|
|
||||||
|
// 企业微信审核相关
|
||||||
ApprovalInfo struct {
|
ApprovalInfo struct {
|
||||||
SpNo string `xml:"SpNo"`
|
SpNo string `xml:"SpNo"`
|
||||||
SpName string `xml:"SpName"`
|
SpName string `xml:"SpName"`
|
||||||
|
|
Loading…
Reference in New Issue