GoogleAdsSearchads360V23CommonUnifiedCallAsset.fromJson constructor

GoogleAdsSearchads360V23CommonUnifiedCallAsset.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23CommonUnifiedCallAsset.fromJson(core.Map json_)
  : this(
      adScheduleTargets: (json_['adScheduleTargets'] as core.List?)
          ?.map(
            (value) => GoogleAdsSearchads360V23CommonAdScheduleInfo.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      callConversionAction: json_['callConversionAction'] as core.String?,
      callConversionReportingState:
          json_['callConversionReportingState'] as core.String?,
      callOnly: json_['callOnly'] as core.bool?,
      callTrackingEnabled: json_['callTrackingEnabled'] as core.bool?,
      countryCode: json_['countryCode'] as core.String?,
      endDate: json_['endDate'] as core.String?,
      phoneNumber: json_['phoneNumber'] as core.String?,
      startDate: json_['startDate'] as core.String?,
      useSearcherTimeZone: json_['useSearcherTimeZone'] as core.bool?,
    );