createRecording static method
XML for the createRecording
Implementation
static XmlDocumentFragment createRecording(
RecordingConfiguration recordingConfiguration) {
Transport.builder.element('CreateRecording', nest: () {
Transport.builder.namespace(Xmlns.trc);
recordingConfiguration.toXml();
});
return Transport.builder.buildFragment();
}