toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final action = this.action;
final adClients = this.adClients;
final adRequestCount = this.adRequestCount;
final entityType = this.entityType;
final firstDetectedDate = this.firstDetectedDate;
final lastDetectedDate = this.lastDetectedDate;
final name = this.name;
final policyTopics = this.policyTopics;
final site = this.site;
final siteSection = this.siteSection;
final uri = this.uri;
final warningEscalationDate = this.warningEscalationDate;
return {
'action': ?action,
'adClients': ?adClients,
'adRequestCount': ?adRequestCount,
'entityType': ?entityType,
'firstDetectedDate': ?firstDetectedDate,
'lastDetectedDate': ?lastDetectedDate,
'name': ?name,
'policyTopics': ?policyTopics,
'site': ?site,
'siteSection': ?siteSection,
'uri': ?uri,
'warningEscalationDate': ?warningEscalationDate,
};
}