toJson method

Map<String, dynamic> toJson()

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;
  final thirdPartyOptimizationPartner = this.thirdPartyOptimizationPartner;
  return {
    'advertiserId': ?advertiserId,
    'customBiddingAlgorithmId': ?customBiddingAlgorithmId,
    'customBiddingAlgorithmType': ?customBiddingAlgorithmType,
    'displayName': ?displayName,
    'entityStatus': ?entityStatus,
    'modelDetails': ?modelDetails,
    'name': ?name,
    'partnerId': ?partnerId,
    'sharedAdvertiserIds': ?sharedAdvertiserIds,
    'thirdPartyOptimizationPartner': ?thirdPartyOptimizationPartner,
  };
}