GoogleCloudDialogflowV2ExportDocumentRequest.fromJson constructor
GoogleCloudDialogflowV2ExportDocumentRequest.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2ExportDocumentRequest.fromJson(core.Map json_)
: this(
exportFullContent: json_.containsKey('exportFullContent')
? json_['exportFullContent'] as core.bool
: null,
gcsDestination: json_.containsKey('gcsDestination')
? GoogleCloudDialogflowV2GcsDestination.fromJson(
json_['gcsDestination']
as core.Map<core.String, core.dynamic>)
: null,
smartMessagingPartialUpdate:
json_.containsKey('smartMessagingPartialUpdate')
? json_['smartMessagingPartialUpdate'] as core.bool
: null,
);