toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final eligibleForSearch = this.eligibleForSearch;
  final id = this.id;
  final internalWebPropertyId = this.internalWebPropertyId;
  final kind = this.kind;
  final linkedAccountId = this.linkedAccountId;
  final remarketingAudienceId = this.remarketingAudienceId;
  final status = this.status;
  final type = this.type;
  final webPropertyId = this.webPropertyId;
  return {
    'accountId': ?accountId,
    'eligibleForSearch': ?eligibleForSearch,
    'id': ?id,
    'internalWebPropertyId': ?internalWebPropertyId,
    'kind': ?kind,
    'linkedAccountId': ?linkedAccountId,
    'remarketingAudienceId': ?remarketingAudienceId,
    'status': ?status,
    'type': ?type,
    'webPropertyId': ?webPropertyId,
  };
}