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