toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final contentLabel = this.contentLabel;
final id = this.id;
final ipBlock = this.ipBlock;
final mobileAppCategory = this.mobileAppCategory;
final mobileApplication = this.mobileApplication;
final negativeKeywordList = this.negativeKeywordList;
final placement = this.placement;
final placementList = this.placementList;
final resourceName = this.resourceName;
final type = this.type;
final youtubeChannel = this.youtubeChannel;
final youtubeVideo = this.youtubeVideo;
return {
'contentLabel': ?contentLabel,
'id': ?id,
'ipBlock': ?ipBlock,
'mobileAppCategory': ?mobileAppCategory,
'mobileApplication': ?mobileApplication,
'negativeKeywordList': ?negativeKeywordList,
'placement': ?placement,
'placementList': ?placementList,
'resourceName': ?resourceName,
'type': ?type,
'youtubeChannel': ?youtubeChannel,
'youtubeVideo': ?youtubeVideo,
};
}