GoogleCloudDialogflowCxV3ValidationMessage.fromJson constructor
GoogleCloudDialogflowCxV3ValidationMessage.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowCxV3ValidationMessage.fromJson(core.Map json_)
: this(
detail: json_['detail'] as core.String?,
resourceNames: (json_['resourceNames'] as core.List?)
?.map((value) => GoogleCloudDialogflowCxV3ResourceName.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
resourceType: json_['resourceType'] as core.String?,
resources: (json_['resources'] as core.List?)
?.map((value) => value as core.String)
.toList(),
severity: json_['severity'] as core.String?,
);