GoogleAdsSearchads360V23CommonYouTubeVideoAttributeMetadata.fromJson constructor

GoogleAdsSearchads360V23CommonYouTubeVideoAttributeMetadata.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23CommonYouTubeVideoAttributeMetadata.fromJson(
  core.Map json_,
) : this(
      commentsCount: json_['commentsCount'] as core.String?,
      likesCount: json_['likesCount'] as core.String?,
      publishDate: json_['publishDate'] as core.String?,
      thumbnailUrl: json_['thumbnailUrl'] as core.String?,
      videoProperties: (json_['videoProperties'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      videoUrl: json_['videoUrl'] as core.String?,
      viewsCount: json_['viewsCount'] as core.String?,
    );