GoogleAdsSearchads360V23CommonKnowledgeGraphAttributeMetadata.fromJson constructor

GoogleAdsSearchads360V23CommonKnowledgeGraphAttributeMetadata.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23CommonKnowledgeGraphAttributeMetadata.fromJson(
  core.Map json_,
) : this(
      entityCapabilities: (json_['entityCapabilities'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      relatedCategories: (json_['relatedCategories'] as core.List?)
          ?.map(
            (value) =>
                GoogleAdsSearchads360V23CommonAudienceInsightsAttributeMetadata.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
    );