toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountId = this.accountId;
final botFilteringEnabled = this.botFilteringEnabled;
final childLink = this.childLink;
final created = this.created;
final currency = this.currency;
final defaultPage = this.defaultPage;
final eCommerceTracking = this.eCommerceTracking;
final enhancedECommerceTracking = this.enhancedECommerceTracking;
final excludeQueryParameters = this.excludeQueryParameters;
final id = this.id;
final internalWebPropertyId = this.internalWebPropertyId;
final kind = this.kind;
final name = this.name;
final parentLink = this.parentLink;
final permissions = this.permissions;
final selfLink = this.selfLink;
final siteSearchCategoryParameters = this.siteSearchCategoryParameters;
final siteSearchQueryParameters = this.siteSearchQueryParameters;
final starred = this.starred;
final stripSiteSearchCategoryParameters =
this.stripSiteSearchCategoryParameters;
final stripSiteSearchQueryParameters = this.stripSiteSearchQueryParameters;
final timezone = this.timezone;
final type = this.type;
final updated = this.updated;
final webPropertyId = this.webPropertyId;
final websiteUrl = this.websiteUrl;
return {
'accountId': ?accountId,
'botFilteringEnabled': ?botFilteringEnabled,
'childLink': ?childLink,
'created': ?created?.toUtc().toIso8601String(),
'currency': ?currency,
'defaultPage': ?defaultPage,
'eCommerceTracking': ?eCommerceTracking,
'enhancedECommerceTracking': ?enhancedECommerceTracking,
'excludeQueryParameters': ?excludeQueryParameters,
'id': ?id,
'internalWebPropertyId': ?internalWebPropertyId,
'kind': ?kind,
'name': ?name,
'parentLink': ?parentLink,
'permissions': ?permissions,
'selfLink': ?selfLink,
'siteSearchCategoryParameters': ?siteSearchCategoryParameters,
'siteSearchQueryParameters': ?siteSearchQueryParameters,
'starred': ?starred,
'stripSiteSearchCategoryParameters': ?stripSiteSearchCategoryParameters,
'stripSiteSearchQueryParameters': ?stripSiteSearchQueryParameters,
'timezone': ?timezone,
'type': ?type,
'updated': ?updated?.toUtc().toIso8601String(),
'webPropertyId': ?webPropertyId,
'websiteUrl': ?websiteUrl,
};
}