events.go 443 B

123456789101112
  1. package tethering
  2. // Code generated by cdproto-gen. DO NOT EDIT.
  3. // EventAccepted informs that port was successfully bound and got a specified
  4. // connection id.
  5. //
  6. // See: https://chromedevtools.github.io/devtools-protocol/tot/Tethering#event-accepted
  7. type EventAccepted struct {
  8. Port int64 `json:"port"` // Port number that was successfully bound.
  9. ConnectionID string `json:"connectionId"` // Connection id to be used.
  10. }