toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final ipRange = this.ipRange;
  final ipVersion = this.ipVersion;
  final linkedInterconnectAttachment = this.linkedInterconnectAttachment;
  final linkedVpnTunnel = this.linkedVpnTunnel;
  final managementType = this.managementType;
  final name = this.name;
  final privateIpAddress = this.privateIpAddress;
  final redundantInterface = this.redundantInterface;
  final subnetwork = this.subnetwork;
  return {
    'ipRange': ?ipRange,
    'ipVersion': ?ipVersion,
    'linkedInterconnectAttachment': ?linkedInterconnectAttachment,
    'linkedVpnTunnel': ?linkedVpnTunnel,
    'managementType': ?managementType,
    'name': ?name,
    'privateIpAddress': ?privateIpAddress,
    'redundantInterface': ?redundantInterface,
    'subnetwork': ?subnetwork,
  };
}