DeleteInboundConnectionResponse.fromJson constructor
Implementation
factory DeleteInboundConnectionResponse.fromJson(Map<String, dynamic> json) {
return DeleteInboundConnectionResponse(
connection: json['Connection'] != null
? InboundConnection.fromJson(
json['Connection'] as Map<String, dynamic>)
: null,
);
}