toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final id = this.id;
  final maximizeConversionValue = this.maximizeConversionValue;
  final maximizeConversions = this.maximizeConversions;
  final name = this.name;
  final ownerCustomerId = this.ownerCustomerId;
  final ownerDescriptiveName = this.ownerDescriptiveName;
  final resourceName = this.resourceName;
  final targetCpa = this.targetCpa;
  final targetImpressionShare = this.targetImpressionShare;
  final targetRoas = this.targetRoas;
  final targetSpend = this.targetSpend;
  final type = this.type;
  return {
    'id': ?id,
    'maximizeConversionValue': ?maximizeConversionValue,
    'maximizeConversions': ?maximizeConversions,
    'name': ?name,
    'ownerCustomerId': ?ownerCustomerId,
    'ownerDescriptiveName': ?ownerDescriptiveName,
    'resourceName': ?resourceName,
    'targetCpa': ?targetCpa,
    'targetImpressionShare': ?targetImpressionShare,
    'targetRoas': ?targetRoas,
    'targetSpend': ?targetSpend,
    'type': ?type,
  };
}