rejectLink
inline suspend fun RtbFabricClient.rejectLink(crossinline block: RejectLinkRequest.Builder.() -> Unit): RejectLinkResponse
Rejects a link request between gateways.
When a requester gateway requests to link with a responder gateway, the responder can use this operation to decline the link request.
Samples
fun main() {
//sampleStart
// Rejects a requested link request
val resp = rtbFabricClient.rejectLink {
gatewayId = "rtb-gw-12345678"
linkId = "link-87654321"
}
//sampleEnd
}