StartQueryExecutionOutput.fromJson constructor

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

Implementation

factory StartQueryExecutionOutput.fromJson(Map<String, dynamic> json) {
  return StartQueryExecutionOutput(
    queryExecutionId: json['QueryExecutionId'] as String?,
  );
}