updateLinkModuleFlow
abstract suspend fun updateLinkModuleFlow(input: UpdateLinkModuleFlowRequest): UpdateLinkModuleFlowResponse
Updates a link module flow.
Samples
// Update link module flow for link
val resp = rtbFabricClient.updateLinkModuleFlow {
gatewayId = "rtb-gw-12345678"
linkId = "link-87654321"
clientToken = "randomClientToken"
modules = listOf<ModuleConfiguration>(
ModuleConfiguration {
name = "noBidModule"
version = "1dot0dot0"
dependsOn = listOf<String>(
)
moduleParameters = ModuleParameters.NoBid(NoBidModuleParameters {
reason = "test"
reasonCode = 1
passThroughPercentage = 50.0.toFloat()
}
)
}
)
}Content copied to clipboard