GoogleCloudContactcenterinsightsV1ListAutoLabelingRulesResponse.fromJson constructor

GoogleCloudContactcenterinsightsV1ListAutoLabelingRulesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1ListAutoLabelingRulesResponse.fromJson(
  core.Map json_,
) : this(
      autoLabelingRules: (json_['autoLabelingRules'] as core.List?)
          ?.map(
            (value) =>
                GoogleCloudContactcenterinsightsV1AutoLabelingRule.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
      nextPageToken: json_['nextPageToken'] as core.String?,
    );