-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathguide.go
26 lines (22 loc) · 809 Bytes
/
guide.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2020 YBCZ, Inc. All rights reserved.
//
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file in the root of the source
// tree.
package mp_api
type GuideAccountAddData struct {
GuideAccount string `json:"guide_account,omitempty"`
GuideOpenId string `json:"guide_openid,omitempty"`
GuideHeadImgUrl string `json:"guide_headimgurl,omitempty"`
GuideNickname string `json:"guide_nickname,omitempty"`
}
type GuideBuyer struct {
OpenId string `json:"openid,omitempty"`
BuyerNickname string `json:"buyer_nickname,omitempty"`
}
type GuideAddBuyerData struct {
GuideAccount string `json:"guide_account,omitempty"`
GuideOpenid string `json:"guide_openid,omitempty"`
GuideBuyer
BuyerList []GuideBuyer `json:"buyer_list,omitempty"`
}