toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final networkAttachment = this.networkAttachment;
  final publicIpAddressDisabled = this.publicIpAddressDisabled;
  final routeAllTraffic = this.routeAllTraffic;
  return {
    'networkAttachment': ?networkAttachment,
    'publicIpAddressDisabled': ?publicIpAddressDisabled,
    'routeAllTraffic': ?routeAllTraffic,
  };
}