GoogleCloudChannelV1RunReportJobRequest.fromJson constructor

GoogleCloudChannelV1RunReportJobRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1RunReportJobRequest.fromJson(core.Map json_)
  : this(
      dateRange: json_.containsKey('dateRange')
          ? GoogleCloudChannelV1DateRange.fromJson(
              json_['dateRange'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      filter: json_['filter'] as core.String?,
      languageCode: json_['languageCode'] as core.String?,
    );