Ejemplo n.º 1
0
 public void CanGetAsReportedFundamentals()
 {
     var request = new GetAsReportedFundamentals {
         identifier = "AAPL"
     };
     var response = ApiClient.GetAsReportedFundamentals(request);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// http://docs.intrinio.com/#as-reported-fundamentals
 /// Returns a list of available as reported fundamentals (fiscal year, fiscal period, start date, and end date) for a
 /// given ticker and statement. Also, you may add a date and type parameter to specify the fundamentals you wish to be
 /// returned in the response.
 /// </summary>
 /// <param name="request"></param>
 /// <returns></returns>
 public GetAsReportedFundamentalsResponse GetAsReportedFundamentals(GetAsReportedFundamentals request)
 {
     return(GetMetaList <GetAsReportedFundamentals, GetAsReportedFundamentalsResponse>(request));
 }