EndUserAuthenticationNotifyEndpointDestination.fromJson constructor

EndUserAuthenticationNotifyEndpointDestination.fromJson(
  1. Map json_
)

Implementation

EndUserAuthenticationNotifyEndpointDestination.fromJson(core.Map json_)
  : this(
      endpoint: json_.containsKey('endpoint')
          ? EndUserAuthenticationNotifyEndpointDestinationEndPoint.fromJson(
              json_['endpoint'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      serviceAccount: json_['serviceAccount'] as core.String?,
      type: json_['type'] as core.String?,
    );