| 4295 | // https://searchfox.org/mozilla-central/source/dom/interfaces/payments/nsIPaymentActionResponse.idl |
| 4296 | |
| 4297 | interface nsIPaymentResponseData extends nsISupports { |
| 4298 | readonly GENERAL_RESPONSE?: 0; |
| 4299 | readonly BASICCARD_RESPONSE?: 1; |
| 4300 | |
| 4301 | readonly type: u32; |
| 4302 | init(aType: u32): void; |
| 4303 | } |
| 4304 | |
| 4305 | interface nsIGeneralResponseData extends nsIPaymentResponseData { |
| 4306 | readonly data: string; |
nothing calls this directly
no outgoing calls
no test coverage detected