-
Notifications
You must be signed in to change notification settings - Fork 12
/
EcardItemDo.go
126 lines (52 loc) · 2.66 KB
/
EcardItemDo.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package alicom
// EcardItemDo
type EcardItemDo struct {
// begin_of_validity
BeginOfValidity string `json:"begin_of_validity,omitempty" xml:"begin_of_validity,omitempty"`
// cz_activity_desc
CzActivityDesc string `json:"cz_activity_desc,omitempty" xml:"cz_activity_desc,omitempty"`
// err_msg
ErrMsg string `json:"err_msg,omitempty" xml:"err_msg,omitempty"`
// face_price
FacePrice string `json:"face_price,omitempty" xml:"face_price,omitempty"`
// flow_type
FlowType string `json:"flow_type,omitempty" xml:"flow_type,omitempty"`
// is_activity
IsActivity bool `json:"is_activity,omitempty" xml:"is_activity,omitempty"`
// is_guan_f_seller
IsGuanFSeller bool `json:"is_guan_f_seller,omitempty" xml:"is_guan_f_seller,omitempty"`
// is_hui_item
IsHuiItem bool `json:"is_hui_item,omitempty" xml:"is_hui_item,omitempty"`
// is_invalid_monthly
IsInvalidMonthly string `json:"is_invalid_monthly,omitempty" xml:"is_invalid_monthly,omitempty"`
// is_white
IsWhite bool `json:"is_white,omitempty" xml:"is_white,omitempty"`
// item_id
ItemId string `json:"item_id,omitempty" xml:"item_id,omitempty"`
// item_name
ItemName string `json:"item_name,omitempty" xml:"item_name,omitempty"`
// mobile
Mobile string `json:"mobile,omitempty" xml:"mobile,omitempty"`
// price_ext_content
PriceExtContent string `json:"price_ext_content,omitempty" xml:"price_ext_content,omitempty"`
// promotion_price
PromotionPrice string `json:"promotion_price,omitempty" xml:"promotion_price,omitempty"`
// result
Result int64 `json:"result,omitempty" xml:"result,omitempty"`
// seller
Seller string `json:"seller,omitempty" xml:"seller,omitempty"`
// send_desc
SendDesc string `json:"send_desc,omitempty" xml:"send_desc,omitempty"`
// simple_desc
SimpleDesc string `json:"simple_desc,omitempty" xml:"simple_desc,omitempty"`
// std_price
StdPrice string `json:"std_price,omitempty" xml:"std_price,omitempty"`
// success
Success bool `json:"success,omitempty" xml:"success,omitempty"`
// term_of_validity
TermOfValidity string `json:"term_of_validity,omitempty" xml:"term_of_validity,omitempty"`
// time_limit
TimeLimit string `json:"time_limit,omitempty" xml:"time_limit,omitempty"`
// title
Title string `json:"title,omitempty" xml:"title,omitempty"`
}