GoogleCloudApigeeV1QueryTimeSeriesStatsResponse.fromJson constructor
GoogleCloudApigeeV1QueryTimeSeriesStatsResponse.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1QueryTimeSeriesStatsResponse.fromJson(core.Map json_)
: this(
columns:
(json_['columns'] as core.List?)
?.map((value) => value as core.String)
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
values:
(json_['values'] as core.List?)
?.map(
(value) =>
GoogleCloudApigeeV1QueryTimeSeriesStatsResponseSequence.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);