listTransformers
inline suspend fun B2BiClient.listTransformers(crossinline block: ListTransformersRequest.Builder.() -> Unit): ListTransformersResponse
Lists the available transformers. A transformer describes how to process the incoming EDI documents and extract the necessary information to the output file.
Samples
fun main() {
//sampleStart
// Sample ListTransformers call
val resp = b2BiClient.listTransformers {
maxResults = 50
nextToken = "foo"
}
//sampleEnd
}