CreateDeliverabilityTestReportResponse.fromJson constructor

CreateDeliverabilityTestReportResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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