events.go 669 B

12345678910111213141516171819
  1. package cast
  2. // Code generated by cdproto-gen. DO NOT EDIT.
  3. // EventSinksUpdated this is fired whenever the list of available sinks
  4. // changes. A sink is a device or a software surface that you can cast to.
  5. //
  6. // See: https://chromedevtools.github.io/devtools-protocol/tot/Cast#event-sinksUpdated
  7. type EventSinksUpdated struct {
  8. Sinks []*Sink `json:"sinks"`
  9. }
  10. // EventIssueUpdated this is fired whenever the outstanding issue/error
  11. // message changes. |issueMessage| is empty if there is no issue.
  12. //
  13. // See: https://chromedevtools.github.io/devtools-protocol/tot/Cast#event-issueUpdated
  14. type EventIssueUpdated struct {
  15. IssueMessage string `json:"issueMessage"`
  16. }