toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (accountId != null) 'accountId': accountId!,
      if (eligibleForSearch != null) 'eligibleForSearch': eligibleForSearch!,
      if (id != null) 'id': id!,
      if (internalWebPropertyId != null)
        'internalWebPropertyId': internalWebPropertyId!,
      if (kind != null) 'kind': kind!,
      if (linkedAccountId != null) 'linkedAccountId': linkedAccountId!,
      if (remarketingAudienceId != null)
        'remarketingAudienceId': remarketingAudienceId!,
      if (status != null) 'status': status!,
      if (type != null) 'type': type!,
      if (webPropertyId != null) 'webPropertyId': webPropertyId!,
    };