toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final advertiserIdentifierCount = this.advertiserIdentifierCount;
final cleanRoomIdentifier = this.cleanRoomIdentifier;
final matchRatePercentage = this.matchRatePercentage;
final publisherId = this.publisherId;
final publisherName = this.publisherName;
return {
'advertiserIdentifierCount': ?advertiserIdentifierCount,
'cleanRoomIdentifier': ?cleanRoomIdentifier,
'matchRatePercentage': ?matchRatePercentage,
'publisherId': ?publisherId,
'publisherName': ?publisherName,
};
}