$NegativeKeywordList.fromJson constructor

$NegativeKeywordList.fromJson(
  1. Map json_
)

Implementation

$NegativeKeywordList.fromJson(core.Map json_)
    : this(
        advertiserId: json_.containsKey('advertiserId')
            ? json_['advertiserId'] as core.String
            : null,
        displayName: json_.containsKey('displayName')
            ? json_['displayName'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        negativeKeywordListId: json_.containsKey('negativeKeywordListId')
            ? json_['negativeKeywordListId'] as core.String
            : null,
        targetedLineItemCount: json_.containsKey('targetedLineItemCount')
            ? json_['targetedLineItemCount'] as core.String
            : null,
      );