Example #1
0
 public void CanGetAsReportedFinancials()
 {
     var request = new GetAsReportedFinancials {
         identifier = "AAPL"
     };
     var response = ApiClient.GetAsReportedFinancials(request);
 }
Example #2
0
 /// <summary>
 /// http://docs.intrinio.com/#as-reported-financials
 /// Returns the As Reported Financials directly from the financial statements of the XBRL filings from the company.
 /// </summary>
 /// <param name="request"></param>
 /// <returns></returns>
 public GetAsReportedFinancialsResponse GetAsReportedFinancials(GetAsReportedFinancials request)
 {
     return(GetMetaList <GetAsReportedFinancials, GetAsReportedFinancialsResponse>(request));
 }