toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final advertiserId = this.advertiserId;
final customBiddingAlgorithmId = this.customBiddingAlgorithmId;
final customBiddingAlgorithmType = this.customBiddingAlgorithmType;
final displayName = this.displayName;
final entityStatus = this.entityStatus;
final modelDetails = this.modelDetails;
final name = this.name;
final partnerId = this.partnerId;
final sharedAdvertiserIds = this.sharedAdvertiserIds;
return {
'advertiserId': ?advertiserId,
'customBiddingAlgorithmId': ?customBiddingAlgorithmId,
'customBiddingAlgorithmType': ?customBiddingAlgorithmType,
'displayName': ?displayName,
'entityStatus': ?entityStatus,
'modelDetails': ?modelDetails,
'name': ?name,
'partnerId': ?partnerId,
'sharedAdvertiserIds': ?sharedAdvertiserIds,
};
}