data class Initiator
Information about the request initiator.
<init> |
Information about the request initiator. Initiator(type: String, stack: StackTrace? = null, url: String? = null, lineNumber: Double? = null, columnNumber: Double? = null, requestId: RequestId? = null) |
columnNumber |
Initiator column number, set for Parser type or for Script type (when script is importing module) (0-based). val columnNumber: Double? |
lineNumber |
Initiator line number, set for Parser type or for Script type (when script is importing module) (0-based). val lineNumber: Double? |
requestId |
Set if another request triggered this request (e.g. preflight). val requestId: RequestId? |
stack |
Initiator JavaScript stack trace, set for Script only. val stack: StackTrace? |
type |
Type of this initiator. val type: String |
url |
Initiator URL, set for Parser type or for Script type (when script is importing module) or for SignedExchange type. val url: String? |