An object containing initialization options for the request information.
Represents options for creating a request information instance.
Optional
eventName?: EventNameThe name of the event associated with the request, if any.
Optional
iteration?: numberThe current iteration number of the request, if applicable.
Optional
iterationCount?: numberThe total number of iterations for the request, if applicable.
Optional
requestId?: stringThe unique identifier of the request, if specified.
Optional
requestName?: stringThe name of the request, if specified.
The name of the event associated with the request. It could be 'prerequest` or 'test'.
The current iteration number of the request execution. This value represents how many times the request has been executed in a loop or sequence.
The number of iterations that have been executed. This property tracks how many times a specific operation or process has been repeated.
The unique identifier for the request.
The name of the request. This property holds the user-defined name for the request, which can be used to identify or reference the request within the application.
Converts the current instance of the object into a plain JavaScript object.
An object containing the following properties:
eventName
: The name of the event associated with the request.iteration
: The current iteration number of the request.iterationCount
: The total number of iterations for the request.requestName
: The name of the request.requestId
: The unique identifier of the request.
Constructs a new instance of the
RequestInfo
class.