GetFunctionConcurrencyResponse.fromJson constructor

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

Implementation

factory GetFunctionConcurrencyResponse.fromJson(Map<String, dynamic> json) {
  return GetFunctionConcurrencyResponse(
    reservedConcurrentExecutions:
        json['ReservedConcurrentExecutions'] as int?,
  );
}