ListFirstPartyAndPartnerAudiencesResponse.fromJson constructor

ListFirstPartyAndPartnerAudiencesResponse.fromJson(
  1. Map json_
)

Implementation

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