events.go 559 B

1234567891011
  1. package autofill
  2. // Code generated by cdproto-gen. DO NOT EDIT.
  3. // EventAddressFormFilled emitted when an address form is filled.
  4. //
  5. // See: https://chromedevtools.github.io/devtools-protocol/tot/Autofill#event-addressFormFilled
  6. type EventAddressFormFilled struct {
  7. FilledFields []*FilledField `json:"filledFields"` // Information about the fields that were filled
  8. AddressUI *AddressUI `json:"addressUi"` // An UI representation of the address used to fill the form. Consists of a 2D array where each child represents an address/profile line.
  9. }