GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo.fromJson constructor
GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo.fromJson(
core.Map json_,
) : this(
contextReferenceRetrieved:
json_['contextReferenceRetrieved'] as core.bool?,
ingestedParametersDebugInfo:
(json_['ingestedParametersDebugInfo'] as core.List?)
?.map(
(value) =>
GoogleCloudDialogflowV2IngestedContextReferenceDebugInfoIngestedParameterDebugInfo.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
projectNotAllowlisted: json_['projectNotAllowlisted'] as core.bool?,
);