CreateDeliverabilityTestReportResponse.fromJson constructor
Implementation
factory CreateDeliverabilityTestReportResponse.fromJson(
Map<String, dynamic> json) {
return CreateDeliverabilityTestReportResponse(
deliverabilityTestStatus: (json['DeliverabilityTestStatus'] as String)
.toDeliverabilityTestStatus(),
reportId: json['ReportId'] as String,
);
}