PendingAggregationRequest.fromJson constructor

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

Implementation

factory PendingAggregationRequest.fromJson(Map<String, dynamic> json) {
  return PendingAggregationRequest(
    requesterAccountId: json['RequesterAccountId'] as String?,
    requesterAwsRegion: json['RequesterAwsRegion'] as String?,
  );
}