GoogleCloudApigeeV1QueryTabularStatsResponse.fromJson constructor

GoogleCloudApigeeV1QueryTabularStatsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1QueryTabularStatsResponse.fromJson(core.Map json_)
    : this(
        columns: json_.containsKey('columns')
            ? (json_['columns'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
        values: json_.containsKey('values')
            ? (json_['values'] as core.List)
                .map((value) => value as core.List)
                .toList()
            : null,
      );