Skip to content

Commit

Permalink
changed the type of createdTime to time.Time
Browse files Browse the repository at this point in the history
  • Loading branch information
Paxx committed Jul 5, 2023
1 parent d5dbf2f commit d60eef8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ovenmedia/response.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,10 @@ type ResponseRecording struct {
Name string `json:"name"`
Tracks []int `json:"tracks"`
} `json:"stream"`
FilePath string `json:"filePath"`
InfoPath string `json:"infoPath"`
Interval int `json:"interval"`
Schedule string `json:"schedule"`
SegmentationRule string `json:"segmentationRule"`
CreatedTime string `json:"createdTime"`
FilePath string `json:"filePath"`
InfoPath string `json:"infoPath"`
Interval int `json:"interval"`
Schedule string `json:"schedule"`
SegmentationRule string `json:"segmentationRule"`
CreatedTime time.Time `json:"createdTime"`
}

0 comments on commit d60eef8

Please sign in to comment.