EnterpriseCrmEventbusProtoNotification.fromJson constructor

EnterpriseCrmEventbusProtoNotification.fromJson(
  1. Map json_
)

Implementation

EnterpriseCrmEventbusProtoNotification.fromJson(core.Map json_)
  : this(
      buganizerNotification: json_.containsKey('buganizerNotification')
          ? EnterpriseCrmEventbusProtoBuganizerNotification.fromJson(
              json_['buganizerNotification']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      emailAddress: json_.containsKey('emailAddress')
          ? EnterpriseCrmEventbusProtoAddress.fromJson(
              json_['emailAddress'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      escalatorQueue: json_['escalatorQueue'] as core.String?,
      pubsubTopic: json_['pubsubTopic'] as core.String?,
      request: json_.containsKey('request')
          ? EnterpriseCrmEventbusProtoCustomSuspensionRequest.fromJson(
              json_['request'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );