DigitalContentLabelAssignedTargetingOptionDetails.fromJson constructor

DigitalContentLabelAssignedTargetingOptionDetails.fromJson(
  1. Map json_
)

Implementation

DigitalContentLabelAssignedTargetingOptionDetails.fromJson(core.Map json_)
    : this(
        contentRatingTier: json_.containsKey('contentRatingTier')
            ? json_['contentRatingTier'] as core.String
            : null,
        excludedTargetingOptionId:
            json_.containsKey('excludedTargetingOptionId')
                ? json_['excludedTargetingOptionId'] as core.String
                : null,
      );