SetIncomingDataToNetworkParamsHolderUrl
fun EventSchemaBuilderScope.SetIncomingDataToNetworkParamsHolderUrl(id: String = randomId(), trigger: EventTrigger, events: EventSchemaBuilderScope.() -> Unit = {})
Stores incomingData as the URL in the client's NetworkParametersHolder, so a later request in the chain picks it up instead of carrying the URL on its own schema — the pattern behind SendFile-style flows where the URL comes from a prior response. incomingData is required and must be a String. Dispatches onSuccess (no data) when the URL was stored; onFailure (no data, logged) when incomingData is missing or isn't a String.
Parameters
id
Unique identifier of this event. Defaults to a random id.
trigger
Trigger that fires this event, built via EventTriggers.
events
Child events chained after this one, wired to its triggers (onSuccess, onFailure).