UnprocessedQueryExecutionId.fromJson constructor
Implementation
factory UnprocessedQueryExecutionId.fromJson(Map<String, dynamic> json) {
return UnprocessedQueryExecutionId(
errorCode: json['ErrorCode'] as String?,
errorMessage: json['ErrorMessage'] as String?,
queryExecutionId: json['QueryExecutionId'] as String?,
);
}