ListCreativeStatusBreakdownByCreativeResponse.fromJson constructor
ListCreativeStatusBreakdownByCreativeResponse.fromJson(
- Map json_
Implementation
ListCreativeStatusBreakdownByCreativeResponse.fromJson(core.Map json_)
: this(
filteredBidCreativeRows: json_.containsKey('filteredBidCreativeRows')
? (json_['filteredBidCreativeRows'] as core.List)
.map((value) => FilteredBidCreativeRow.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);