AI-generated Key Takeaways
-
RequestEvent is event data for all events representing requests made to the receiver.
-
The RequestEvent constructor takes the event type, request data, and sender ID as parameters.
-
The
requestDataproperty provides the data sent with the request. -
The
senderIdproperty indicates the sender's ID from which the request originated.
cast.
framework
.
events
.
RequestEvent
Event data for all events that represent requests made to the receiver.
Constructor
RequestEvent
new RequestEvent(type, requestData, senderId)
Parameter
type
cast.framework.events.EventType
Value must not be null.
requestData
cast.framework.messages.RequestData
Value must not be null.
senderId
string
Properties
requestData
non-null cast.framework.messages.RequestData
The data that was sent with the request.
senderId
string
The sender id the request came from.

