listLinks

inline suspend fun RtbFabricClient.listLinks(crossinline block: ListLinksRequest.Builder.() -> Unit): ListLinksResponse

Lists links associated with gateways.

Returns a list of all links for the specified gateways, including their status and configuration details.

Samples


fun main() { 
   //sampleStart 
   // Lists all links for the specified gateway
val resp = rtbFabricClient.listLinks {
    gatewayId = "rtb-gw-12345678"
    maxResults = 10
} 
   //sampleEnd
}