toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final activeNatIps = this.activeNatIps;
final drainNatIps = this.drainNatIps;
final minExtraIpsNeeded = this.minExtraIpsNeeded;
final numVmEndpointsWithNatMappings = this.numVmEndpointsWithNatMappings;
final ruleNumber = this.ruleNumber;
return {
'activeNatIps': ?activeNatIps,
'drainNatIps': ?drainNatIps,
'minExtraIpsNeeded': ?minExtraIpsNeeded,
'numVmEndpointsWithNatMappings': ?numVmEndpointsWithNatMappings,
'ruleNumber': ?ruleNumber,
};
}