GoogleCloudApigeeV1ComputeEnvironmentScoresRequest.fromJson constructor
GoogleCloudApigeeV1ComputeEnvironmentScoresRequest.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1ComputeEnvironmentScoresRequest.fromJson(core.Map json_)
: this(
filters: (json_['filters'] as core.List?)
?.map((value) =>
GoogleCloudApigeeV1ComputeEnvironmentScoresRequestFilter
.fromJson(value as core.Map<core.String, core.dynamic>))
.toList(),
pageSize: json_['pageSize'] as core.int?,
pageToken: json_['pageToken'] as core.String?,
timeRange: json_.containsKey('timeRange')
? GoogleTypeInterval.fromJson(
json_['timeRange'] as core.Map<core.String, core.dynamic>)
: null,
);