File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,17 +76,17 @@ func (call *Call) UnmarshalJSON(data []byte) error {
76
76
}
77
77
createdAt , err := time .Parse (time .RFC3339 , raw .CreatedAt )
78
78
if err != nil {
79
- return fmt .Errorf ("unable to parse CallFlow CreatedAt: %v" , err )
79
+ return fmt .Errorf ("unable to parse Call CreatedAt: %v" , err )
80
80
}
81
81
updatedAt , err := time .Parse (time .RFC3339 , raw .UpdatedAt )
82
82
if err != nil {
83
- return fmt .Errorf ("unable to parse CallFlow UpdatedAt: %v" , err )
83
+ return fmt .Errorf ("unable to parse Call UpdatedAt: %v" , err )
84
84
}
85
85
var endedAt * time.Time
86
86
if raw .EndedAt != "" {
87
87
eat , err := time .Parse (time .RFC3339 , raw .EndedAt )
88
88
if err != nil {
89
- return fmt .Errorf ("unable to parse CallFlow EndedAt: %v" , err )
89
+ return fmt .Errorf ("unable to parse Call EndedAt: %v" , err )
90
90
}
91
91
endedAt = & eat
92
92
}
You can’t perform that action at this time.
0 commit comments