listTransformers
inline suspend fun B2BiClient.listTransformers(crossinline block: ListTransformersRequest.Builder.() -> Unit): ListTransformersResponse
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
}