GoogleCloudDialogflowV2ExportDocumentRequest.fromJson constructor

GoogleCloudDialogflowV2ExportDocumentRequest.fromJson(
  1. Map json_
)

Implementation

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