toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final description = this.description;
final endpointForwardingRule = this.endpointForwardingRule;
final endpointIp = this.endpointIp;
final labels = this.labels;
final name = this.name;
final network = this.network;
final satisfiesPzi = this.satisfiesPzi;
final satisfiesPzs = this.satisfiesPzs;
final severity = this.severity;
final state = this.state;
final threatExceptions = this.threatExceptions;
final trafficLogs = this.trafficLogs;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'description': ?description,
'endpointForwardingRule': ?endpointForwardingRule,
'endpointIp': ?endpointIp,
'labels': ?labels,
'name': ?name,
'network': ?network,
'satisfiesPzi': ?satisfiesPzi,
'satisfiesPzs': ?satisfiesPzs,
'severity': ?severity,
'state': ?state,
'threatExceptions': ?threatExceptions,
'trafficLogs': ?trafficLogs,
'updateTime': ?updateTime,
};
}