UpdateGatewayInformationOutput.fromJson constructor

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

Implementation

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