12 lines
331 B
Go
12 lines
331 B
Go
package response
|
|
|
|
import (
|
|
"alfred/model/ingester"
|
|
)
|
|
|
|
type WebSessionResponseData struct {
|
|
BaseAttributesDTO ingester.WebBaseAttributes `json:"base_attributes"`
|
|
SessionAttributes ingester.WebSessionAttributes `json:"session_attribute,omitempty"`
|
|
DurationInMillis int64 `json:"duration,omitempty"`
|
|
}
|