ServiceAttachmentConnectedEndpoint.fromJson constructor

ServiceAttachmentConnectedEndpoint.fromJson(
  1. Map json_
)

Implementation

ServiceAttachmentConnectedEndpoint.fromJson(core.Map json_)
  : this(
      consumerNetwork: json_['consumerNetwork'] as core.String?,
      endpoint: json_['endpoint'] as core.String?,
      natIps:
          (json_['natIps'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      propagatedConnectionCount:
          json_['propagatedConnectionCount'] as core.int?,
      pscConnectionId: json_['pscConnectionId'] as core.String?,
      status: json_['status'] as core.String?,
    );