-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact_result.go
46 lines (29 loc) · 943 Bytes
/
contact_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
/*
* 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 ContactResult struct {
Id int64 `json:"id,omitempty"`
CreatedAt time.Time `json:"created_at,omitempty"`
UpdatedAt time.Time `json:"updated_at,omitempty"`
DeletedAt time.Time `json:"deleted_at,omitempty"`
ExternalStationId int64 `json:"_external_station_id,omitempty"`
ModelTypeId int64 `json:"model_type_id"`
FieldValues *interface{} `json:"field_values,omitempty"`
Email string `json:"email,omitempty"`
Firstname string `json:"firstname"`
Lastname string `json:"lastname"`
Phone string `json:"phone,omitempty"`
Tags *ContactRelationsTags `json:"tags"`
Items *ContactRelationsItems `json:"items,omitempty"`
ModelType *BroadcastRelationsModelType `json:"model_type,omitempty"`
}