GoogleCloudContentwarehouseV1HistogramQueryPropertyNameFilter.fromJson constructor

GoogleCloudContentwarehouseV1HistogramQueryPropertyNameFilter.fromJson(
  1. Map json_
)

Implementation

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