toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final adServingPlatformId = this.adServingPlatformId;
  final approved = this.approved;
  final directorySiteId = this.directorySiteId;
  final directorySiteIdDimensionValue = this.directorySiteIdDimensionValue;
  final id = this.id;
  final idDimensionValue = this.idDimensionValue;
  final keyName = this.keyName;
  final kind = this.kind;
  final name = this.name;
  final siteContacts = this.siteContacts;
  final siteSettings = this.siteSettings;
  final subaccountId = this.subaccountId;
  final videoSettings = this.videoSettings;
  return {
    'accountId': ?accountId,
    'adServingPlatformId': ?adServingPlatformId,
    'approved': ?approved,
    'directorySiteId': ?directorySiteId,
    'directorySiteIdDimensionValue': ?directorySiteIdDimensionValue,
    'id': ?id,
    'idDimensionValue': ?idDimensionValue,
    'keyName': ?keyName,
    'kind': ?kind,
    'name': ?name,
    'siteContacts': ?siteContacts,
    'siteSettings': ?siteSettings,
    'subaccountId': ?subaccountId,
    'videoSettings': ?videoSettings,
  };
}