github.com/muxinc/mux-go@v1.1.1/model_asset_recording_times.go (about) 1 // Mux Go - Copyright 2019 Mux Inc. 2 // NOTE: This file is auto generated. Do not edit this file manually. 3 4 package muxgo 5 6 import ( 7 "time" 8 ) 9 10 type AssetRecordingTimes struct { 11 // The time at which the recording for the live stream started. The time value is Unix epoch time represented in ISO 8601 format. 12 StartedAt time.Time `json:"started_at,omitempty"` 13 // The duration of the live stream recorded. The time value is in seconds. 14 Duration float64 `json:"duration,omitempty"` 15 }