fromJson static method

WebhookDeliveryStatusPayload? fromJson(
  1. dynamic value
)

Returns a new WebhookDeliveryStatusPayload instance and imports its values from value if it's a Map, null otherwise.

Implementation

// ignore: prefer_constructors_over_static_methods
static WebhookDeliveryStatusPayload? fromJson(dynamic value) {
  if (value is Map) {
    final json = value.cast<String, dynamic>();

    // Ensure that the map contains the required keys.
    // Note 1: the values aren't checked for validity beyond being non-null.
    // Note 2: this code is stripped in release mode!
    assert(() {
      requiredKeys.forEach((key) {
        assert(json.containsKey(key), 'Required key "WebhookDeliveryStatusPayload[$key]" is missing from JSON.');
        assert(json[key] != null, 'Required key "WebhookDeliveryStatusPayload[$key]" has a null value in JSON.');
      });
      return true;
    }());

    return WebhookDeliveryStatusPayload(
      messageId: mapValueOfType<String>(json, r'messageId')!,
      webhookId: mapValueOfType<String>(json, r'webhookId')!,
      eventName: WebhookDeliveryStatusPayloadEventNameEnum.fromJson(json[r'eventName'])!,
      webhookName: mapValueOfType<String>(json, r'webhookName'),
      id: mapValueOfType<String>(json, r'id')!,
      userId: mapValueOfType<String>(json, r'userId')!,
      sentId: mapValueOfType<String>(json, r'sentId'),
      remoteMtaIp: mapValueOfType<String>(json, r'remoteMtaIp'),
      inboxId: mapValueOfType<String>(json, r'inboxId'),
      reportingMta: mapValueOfType<String>(json, r'reportingMta'),
      recipients: json[r'recipients'] is List
          ? (json[r'recipients'] as List).cast<String>()
          : const [],
      smtpResponse: mapValueOfType<String>(json, r'smtpResponse'),
      smtpStatusCode: mapValueOfType<int>(json, r'smtpStatusCode'),
      processingTimeMillis: mapValueOfType<int>(json, r'processingTimeMillis'),
      received: mapDateTime(json, r'received', ''),
      subject: mapValueOfType<String>(json, r'subject'),
    );
  }
  return null;
}