GoogleAdsSearchads360V23CommonCustomerMatchUserListMetadata.fromJson constructor

GoogleAdsSearchads360V23CommonCustomerMatchUserListMetadata.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23CommonCustomerMatchUserListMetadata.fromJson(
  core.Map json_,
) : this(
      consent: json_.containsKey('consent')
          ? GoogleAdsSearchads360V23CommonConsent.fromJson(
              json_['consent'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      userList: json_['userList'] as core.String?,
    );