BulkEditNegativeKeywordsRequest.fromJson constructor
      
      BulkEditNegativeKeywordsRequest.fromJson(
    
    
- Map json_
 
Implementation
BulkEditNegativeKeywordsRequest.fromJson(core.Map json_)
  : this(
      createdNegativeKeywords:
          (json_['createdNegativeKeywords'] as core.List?)
              ?.map(
                (value) => NegativeKeyword.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
      deletedNegativeKeywords:
          (json_['deletedNegativeKeywords'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );