DeleteTargetTcpProxyRequest.fromJson constructor
DeleteTargetTcpProxyRequest.fromJson(
- Object? j
Implementation
factory DeleteTargetTcpProxyRequest.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return DeleteTargetTcpProxyRequest(
project: switch (json['project']) {
null => '',
Object $1 => decodeString($1),
},
requestId: switch (json['requestId']) {
null => null,
Object $1 => decodeString($1),
},
targetTcpProxy: switch (json['targetTcpProxy']) {
null => '',
Object $1 => decodeString($1),
},
);
}