GoogleCloudContentwarehouseV1TimeFilter.fromJson constructor

GoogleCloudContentwarehouseV1TimeFilter.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1TimeFilter.fromJson(core.Map json_)
  : this(
      timeField: json_['timeField'] as core.String?,
      timeRange:
          json_.containsKey('timeRange')
              ? GoogleTypeInterval.fromJson(
                json_['timeRange'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );