mirror of https://github.com/gophish/gophish
added support for document tracker
parent
74884508d3
commit
aae4aca236
|
@ -56,12 +56,13 @@ type CampaignSummary struct {
|
||||||
|
|
||||||
// CampaignStats is a struct representing the statistics for a single campaign
|
// CampaignStats is a struct representing the statistics for a single campaign
|
||||||
type CampaignStats struct {
|
type CampaignStats struct {
|
||||||
Total int64 `json:"total"`
|
Total int64 `json:"total"`
|
||||||
EmailsSent int64 `json:"sent"`
|
EmailsSent int64 `json:"sent"`
|
||||||
OpenedEmail int64 `json:"opened"`
|
OpenedEmail int64 `json:"opened"`
|
||||||
ClickedLink int64 `json:"clicked"`
|
ClickedLink int64 `json:"clicked"`
|
||||||
SubmittedData int64 `json:"submitted_data"`
|
SubmittedData int64 `json:"submitted_data"`
|
||||||
Error int64 `json:"error"`
|
EnabledContent int64 'json:"enabled_content"`
|
||||||
|
Error int64 `json:"error"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ErrCampaignNameNotSpecified indicates there was no template given by the user
|
// ErrCampaignNameNotSpecified indicates there was no template given by the user
|
||||||
|
|
Loading…
Reference in New Issue