-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added SymbolOptionResponse and the functionality to return data based…
… on the REST API (#126)
- Loading branch information
1 parent
8762126
commit e3b4ac7
Showing
4 changed files
with
86 additions
and
1 deletion.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
IEXSharp/Model/CoreData/ReferenceData/Response/SymbolOptionResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using System; | ||
|
||
namespace IEXSharp.Model.CoreData.ReferenceData.Response | ||
{ | ||
public class SymbolOptionResponse | ||
{ | ||
public string symbol { get; set; } | ||
public DateTime date { get; set; } | ||
public string name { get; set; } | ||
public string description { get; set; } | ||
public DateTime expirationDate { get; set; } | ||
public string type { get; set; } | ||
public string side { get; set; } | ||
public string exercise { get; set; } | ||
public decimal strike { get; set; } | ||
public string underlying { get; set; } | ||
public string region { get; set; } | ||
public string currency { get; set; } | ||
public string figi { get; set; } | ||
public int contractSize { get; set; } | ||
public string cfiCode { get; set; } | ||
public string exchange { get; set; } | ||
public string exchangeName { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters