listTransformers

Lists the available transformers. A transformer can take an EDI file as input and transform it into a JSON-or XML-formatted document. Alternatively, a transformer can take a JSON-or XML-formatted document as input and transform it into an EDI file.

Samples


fun main() { 
   //sampleStart 
   // Sample ListTransformers call
val resp = b2BiClient.listTransformers {
    maxResults = 50
    nextToken = "foo"
} 
   //sampleEnd
}