GoogleCloudDialogflowV2BatchUpdateIntentsRequest.fromJson constructor
GoogleCloudDialogflowV2BatchUpdateIntentsRequest.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2BatchUpdateIntentsRequest.fromJson(core.Map json_)
: this(
intentBatchInline: json_.containsKey('intentBatchInline')
? GoogleCloudDialogflowV2IntentBatch.fromJson(
json_['intentBatchInline']
as core.Map<core.String, core.dynamic>)
: null,
intentBatchUri: json_['intentBatchUri'] as core.String?,
intentView: json_['intentView'] as core.String?,
languageCode: json_['languageCode'] as core.String?,
updateMask: json_['updateMask'] as core.String?,
);