AdGroupInventoryControl.fromJson constructor
AdGroupInventoryControl.fromJson(
- Map json_
Implementation
AdGroupInventoryControl.fromJson(core.Map json_)
: this(
adGroupInventoryStrategy:
json_['adGroupInventoryStrategy'] as core.String?,
selectedInventories: json_.containsKey('selectedInventories')
? SelectedInventories.fromJson(
json_['selectedInventories']
as core.Map<core.String, core.dynamic>,
)
: null,
);