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