toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final advertiserId = this.advertiserId;
  final channelId = this.channelId;
  final displayName = this.displayName;
  final name = this.name;
  final negativelyTargetedLineItemCount =
      this.negativelyTargetedLineItemCount;
  final partnerId = this.partnerId;
  final positivelyTargetedLineItemCount =
      this.positivelyTargetedLineItemCount;
  return {
    'advertiserId': ?advertiserId,
    'channelId': ?channelId,
    'displayName': ?displayName,
    'name': ?name,
    'negativelyTargetedLineItemCount': ?negativelyTargetedLineItemCount,
    'partnerId': ?partnerId,
    'positivelyTargetedLineItemCount': ?positivelyTargetedLineItemCount,
  };
}