ListCreativeStatusBreakdownByCreativeResponse.fromJson constructor

ListCreativeStatusBreakdownByCreativeResponse.fromJson(
  1. 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,
      );