ListEkmConnectionsResponse.fromJson constructor

ListEkmConnectionsResponse.fromJson(
  1. Map json_
)

Implementation

ListEkmConnectionsResponse.fromJson(core.Map json_)
    : this(
        ekmConnections: json_.containsKey('ekmConnections')
            ? (json_['ekmConnections'] as core.List)
                .map((value) => EkmConnection.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
        totalSize: json_.containsKey('totalSize')
            ? json_['totalSize'] as core.int
            : null,
      );