RouterInterface.fromJson constructor

RouterInterface.fromJson(
  1. Map json_
)

Implementation

RouterInterface.fromJson(core.Map json_)
  : this(
      ipRange: json_['ipRange'] as core.String?,
      ipVersion: json_['ipVersion'] as core.String?,
      linkedInterconnectAttachment:
          json_['linkedInterconnectAttachment'] as core.String?,
      linkedVpnTunnel: json_['linkedVpnTunnel'] as core.String?,
      managementType: json_['managementType'] as core.String?,
      name: json_['name'] as core.String?,
      privateIpAddress: json_['privateIpAddress'] as core.String?,
      redundantInterface: json_['redundantInterface'] as core.String?,
      subnetwork: json_['subnetwork'] as core.String?,
    );