toJson method
Implementation
Map<String, dynamic> toJson() {
final mpdLocation = this.mpdLocation;
final originManifestType = this.originManifestType;
return {
if (mpdLocation != null) 'MpdLocation': mpdLocation,
if (originManifestType != null)
'OriginManifestType': originManifestType.toValue(),
};
}