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