toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final contentAdsSettings = this.contentAdsSettings;
final displayName = this.displayName;
final name = this.name;
final reportingDimensionId = this.reportingDimensionId;
final state = this.state;
return {
'contentAdsSettings': ?contentAdsSettings,
'displayName': ?displayName,
'name': ?name,
'reportingDimensionId': ?reportingDimensionId,
'state': ?state,
};
}