GoogleCloudContentwarehouseV1HistogramQueryPropertyNameFilter.fromJson constructor

GoogleCloudContentwarehouseV1HistogramQueryPropertyNameFilter.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1HistogramQueryPropertyNameFilter.fromJson(
  core.Map json_,
) : this(
      documentSchemas:
          (json_['documentSchemas'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      propertyNames:
          (json_['propertyNames'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      yAxis: json_['yAxis'] as core.String?,
    );