ServiceAttachmentConnectedEndpoint.fromJson constructor
ServiceAttachmentConnectedEndpoint.fromJson(
- 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?,
);