GoogleAdsSearchads360V23ServicesIncentiveOffer.fromJson constructor

GoogleAdsSearchads360V23ServicesIncentiveOffer.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23ServicesIncentiveOffer.fromJson(core.Map json_)
  : this(
      consolidatedTermsAndConditionsUrl:
          json_['consolidatedTermsAndConditionsUrl'] as core.String?,
      cyoIncentives: json_.containsKey('cyoIncentives')
          ? GoogleAdsSearchads360V23ServicesCyoIncentives.fromJson(
              json_['cyoIncentives'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      type: json_['type'] as core.String?,
    );