Skip to content

Commit

Permalink
Fixed an issue where analyst recommendations were returning null (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
doclove committed Mar 11, 2021
1 parent f2d261e commit 61af530
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ public class AnalystRecommendationsResponse
public long? consensusEndDate { get; set; }
public long consensusStartDate { get; set; }
public long? corporateActionsAppliedDate { get; set; }
public int ratingBuy { get; set; }
public int ratingOverweight { get; set; }
public int ratingHold { get; set; }
public int ratingUnderweight { get; set; }
public int ratingSell { get; set; }
public int ratingNone { get; set; }
public int? ratingBuy { get; set; }
public int? ratingOverweight { get; set; }
public int? ratingHold { get; set; }
public int? ratingUnderweight { get; set; }
public int? ratingSell { get; set; }
public int? ratingNone { get; set; }
public decimal ratingScaleMark { get; set; }
}
}

0 comments on commit 61af530

Please sign in to comment.