DeleteBandwidthRateLimitOutput.fromJson constructor

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

Implementation

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