GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest.fromJson constructor

GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2BatchUpdateEntityTypesRequest.fromJson(core.Map json_)
  : this(
      entityTypeBatchInline:
          json_.containsKey('entityTypeBatchInline')
              ? GoogleCloudDialogflowV2EntityTypeBatch.fromJson(
                json_['entityTypeBatchInline']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      entityTypeBatchUri: json_['entityTypeBatchUri'] as core.String?,
      languageCode: json_['languageCode'] as core.String?,
      updateMask: json_['updateMask'] as core.String?,
    );