toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final advertiserId = this.advertiserId;
  final advertiserIdDimensionValue = this.advertiserIdDimensionValue;
  final id = this.id;
  final kind = this.kind;
  final name = this.name;
  final subaccountId = this.subaccountId;
  return {
    'accountId': ?accountId,
    'advertiserId': ?advertiserId,
    'advertiserIdDimensionValue': ?advertiserIdDimensionValue,
    'id': ?id,
    'kind': ?kind,
    'name': ?name,
    'subaccountId': ?subaccountId,
  };
}