-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcampaign_result.go
48 lines (30 loc) · 967 Bytes
/
campaign_result.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
/*
* RadioManager
*
* RadioManager
*
* API version: 2.0
* Contact: [email protected]
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package radiomanagerclient
import (
"time"
)
type CampaignResult struct {
Id int64 `json:"id"`
UpdatedAt time.Time `json:"updated_at"`
CreatedAt time.Time `json:"created_at"`
DeletedAt time.Time `json:"deleted_at"`
Item *CampaignTemplateItem `json:"item,omitempty"`
ExternalStationId int64 `json:"_external_station_id,omitempty"`
ModelTypeId int64 `json:"model_type_id"`
FieldValues *interface{} `json:"field_values,omitempty"`
Title string `json:"title,omitempty"`
Start time.Time `json:"start"`
Stop time.Time `json:"stop"`
Recommended bool `json:"recommended,omitempty"`
Description string `json:"description,omitempty"`
Items *CampaignRelationsItems `json:"items,omitempty"`
ModelType *BroadcastRelationsModelType `json:"model_type,omitempty"`
}