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_.containsKey('intentBatchUri')
? json_['intentBatchUri'] as core.String
: null,
intentView: json_.containsKey('intentView')
? json_['intentView'] as core.String
: null,
languageCode: json_.containsKey('languageCode')
? json_['languageCode'] as core.String
: null,
updateMask: json_.containsKey('updateMask')
? json_['updateMask'] as core.String
: null,
);