GoogleCloudBeyondcorpSecuritygatewaysV1ListSecurityGatewaysResponse.fromJson constructor
GoogleCloudBeyondcorpSecuritygatewaysV1ListSecurityGatewaysResponse.fromJson(
- Map json_
Implementation
GoogleCloudBeyondcorpSecuritygatewaysV1ListSecurityGatewaysResponse.fromJson(
core.Map json_,
) : this(
nextPageToken: json_['nextPageToken'] as core.String?,
securityGateways: (json_['securityGateways'] as core.List?)
?.map(
(value) =>
GoogleCloudBeyondcorpSecuritygatewaysV1SecurityGateway.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
unreachable: (json_['unreachable'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);