ListCustomBiddingAlgorithmsResponse.fromJson constructor

ListCustomBiddingAlgorithmsResponse.fromJson(
  1. Map json_
)

Implementation

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