GoogleAdsSearchads360V23ServicesPlannableUserInterest.fromJson constructor

GoogleAdsSearchads360V23ServicesPlannableUserInterest.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23ServicesPlannableUserInterest.fromJson(core.Map json_)
  : this(
      userInterest: json_.containsKey('userInterest')
          ? GoogleAdsSearchads360V23CommonUserInterestInfo.fromJson(
              json_['userInterest'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      userInterestDisplayName:
          json_['userInterestDisplayName'] as core.String?,
      userInterestPath: json_['userInterestPath'] as core.String?,
      userInterestType: json_['userInterestType'] as core.String?,
    );