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