createRecordingJob static method
XML for the createRecordingJob
Implementation
static XmlDocumentFragment createRecordingJob(
RecordingJobConfiguration recordingJobConfiguration) {
Transport.builder.element('CreateRecordingJob', nest: () {
Transport.builder.namespace(Xmlns.trc);
recordingJobConfiguration.toXml();
});
return Transport.builder.buildFragment();
}