DeleteGatewayOutput.fromJson constructor

DeleteGatewayOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DeleteGatewayOutput.fromJson(Map<String, dynamic> json) {
  return DeleteGatewayOutput(
    gatewayARN: json['GatewayARN'] as String?,
  );
}