toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final advertiserId = this.advertiserId;
  final bidStrategy = this.bidStrategy;
  final billableOutcome = this.billableOutcome;
  final budget = this.budget;
  final campaignId = this.campaignId;
  final displayName = this.displayName;
  final entityStatus = this.entityStatus;
  final frequencyCap = this.frequencyCap;
  final insertionOrderId = this.insertionOrderId;
  final insertionOrderType = this.insertionOrderType;
  final integrationDetails = this.integrationDetails;
  final name = this.name;
  final pacing = this.pacing;
  final partnerCosts = this.partnerCosts;
  final performanceGoal = this.performanceGoal;
  final reservationType = this.reservationType;
  final updateTime = this.updateTime;
  return {
    'advertiserId': ?advertiserId,
    'bidStrategy': ?bidStrategy,
    'billableOutcome': ?billableOutcome,
    'budget': ?budget,
    'campaignId': ?campaignId,
    'displayName': ?displayName,
    'entityStatus': ?entityStatus,
    'frequencyCap': ?frequencyCap,
    'insertionOrderId': ?insertionOrderId,
    'insertionOrderType': ?insertionOrderType,
    'integrationDetails': ?integrationDetails,
    'name': ?name,
    'pacing': ?pacing,
    'partnerCosts': ?partnerCosts,
    'performanceGoal': ?performanceGoal,
    'reservationType': ?reservationType,
    'updateTime': ?updateTime,
  };
}