GoogleAdsSearchads360V23ServicesCyoIncentives.fromJson constructor
GoogleAdsSearchads360V23ServicesCyoIncentives.fromJson(
- Map json_
Implementation
GoogleAdsSearchads360V23ServicesCyoIncentives.fromJson(core.Map json_)
: this(
highOffer: json_.containsKey('highOffer')
? GoogleAdsSearchads360V23ServicesIncentive.fromJson(
json_['highOffer'] as core.Map<core.String, core.dynamic>,
)
: null,
lowOffer: json_.containsKey('lowOffer')
? GoogleAdsSearchads360V23ServicesIncentive.fromJson(
json_['lowOffer'] as core.Map<core.String, core.dynamic>,
)
: null,
mediumOffer: json_.containsKey('mediumOffer')
? GoogleAdsSearchads360V23ServicesIncentive.fromJson(
json_['mediumOffer'] as core.Map<core.String, core.dynamic>,
)
: null,
);