package structs import ( "time" ) // UserAction represents a user action // swagger:model type UserAction struct { Id string UserId string Expires time.Time }