blob: 6159fdf2af0cdb5bd9004a2159884b79e415ce8b (
plain) (
blame)
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
|
package object
// LeadFormsForm struct.
type LeadFormsForm struct {
FormID int `json:"form_id"`
GroupID int `json:"group_id"`
Photo interface{} `json:"photo"`
Name string `json:"name"`
Title string `json:"title"`
Description string `json:"description"`
Confirmation string `json:"confirmation"`
SiteLinkURL string `json:"site_link_url"`
PolicyLinkURL string `json:"policy_link_url"`
Questions []struct {
Type string `json:"type"`
Key string `json:"key"`
Label string `json:"label,omitempty"`
Options []struct {
Label string `json:"label"`
Key string `json:"key"`
} `json:"options,omitempty"`
} `json:"questions"`
Active int `json:"active"`
LeadsCount int `json:"leads_count"`
PixelCode string `json:"pixel_code"`
OncePerUser int `json:"once_per_user"`
NotifyAdmins string `json:"notify_admins"`
NotifyEmails string `json:"notify_emails"`
URL string `json:"url"`
}
// LeadFormsLead struct.
type LeadFormsLead struct {
LeadID string `json:"lead_id"`
UserID string `json:"user_id"`
Date string `json:"date"`
Answers []struct {
Key string `json:"key"`
Answer struct {
Value string `json:"value"`
} `json:"answer"`
} `json:"answers"`
AdID string `json:"ad_id"`
}
|