GoogleAdsSearchads360V23ResourcesRecommendationCampaignBudgetRecommendation.fromJson constructor

GoogleAdsSearchads360V23ResourcesRecommendationCampaignBudgetRecommendation.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23ResourcesRecommendationCampaignBudgetRecommendation.fromJson(
  core.Map json_,
) : this(
      budgetOptions: (json_['budgetOptions'] as core.List?)
          ?.map(
            (value) =>
                GoogleAdsSearchads360V23ResourcesRecommendationCampaignBudgetRecommendationCampaignBudgetRecommendationOption.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
      currentBudgetAmountMicros:
          json_['currentBudgetAmountMicros'] as core.String?,
      recommendedBudgetAmountMicros:
          json_['recommendedBudgetAmountMicros'] as core.String?,
    );