arlo-go/responses.go
2018-09-16 23:44:41 -05:00

40 lines
823 B
Go

package arlo_golang
// UpdateResponse is an intermediate struct used when parsing data from the UpdateProfile() call.
type Status struct {
Success bool `json:"success"`
}
// LoginResponse is an intermediate struct used when parsing data from the Login() call.
type LoginResponse struct {
Data Account
*Status
}
// DeviceResponse is an intermediate struct used when parsing data from the GetDevices() call.
type DeviceResponse struct {
Data Devices
*Status
}
// LibraryMetaDataResponse is an intermediate struct used when parsing data from the GetLibraryMetaData() call.
type LibraryMetaDataResponse struct {
Data LibraryMetaData
*Status
}
type LibraryResponse struct {
Data Library
*Status
}
type StreamResponse struct {
Data StreamUrl
*Status
}
type RecordingResponse struct {
Data StreamUrl
*Status
}