コード例 #1
0
 public void CanGetOwnerInsiderHoldings()
 {
     var request = new GetOwnerInsiderHoldings {
         cik = "0001494730"
     };
     var response = ApiClient.GetOwnerInsiderHoldings(request);
 }
コード例 #2
0
 /// <summary>
 /// http://docs.intrinio.com/#insider-holdings-by-owner
 /// A list of all ownership interests and the value of their interests by a single owner. A single owner may own insider interests in a number of companies.
 /// </summary>
 /// <param name="request"></param>
 /// <returns></returns>
 public GetOwnerInsiderHoldingsResponse GetOwnerInsiderHoldings(GetOwnerInsiderHoldings request)
 {
     return(GetMetaList <GetOwnerInsiderHoldings, GetOwnerInsiderHoldingsResponse>(request));
 }