GoogleCloudDialogflowV2BatchUpdateIntentsRequest.fromJson constructor

GoogleCloudDialogflowV2BatchUpdateIntentsRequest.fromJson(
  1. 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?,
    );