chromedp/cdp/tethering/events.go
2017-01-26 14:28:34 +07:00

20 lines
515 B
Go

package tethering
// AUTOGENERATED. DO NOT EDIT.
import (
cdp "github.com/knq/chromedp/cdp"
)
// EventAccepted informs that port was successfully bound and got a specified
// connection id.
type EventAccepted struct {
Port int64 `json:"port,omitempty"` // Port number that was successfully bound.
ConnectionID string `json:"connectionId,omitempty"` // Connection id to be used.
}
// EventTypes all event types in the domain.
var EventTypes = []cdp.MethodType{
cdp.EventTetheringAccepted,
}