-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathcompany.rb
More file actions
18 lines (18 loc) · 556 Bytes
/
company.rb
File metadata and controls
18 lines (18 loc) · 556 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module IEX
module Resources
class Company < Resource
property 'symbol' # stock ticker
property 'company_name', from: 'companyName' # company name
property 'exchange' # primary listings exchange
property 'industry'
property 'website'
property 'description'
property 'ceo', from: 'CEO'
property 'security_name', from: 'securityName'
property 'issue_type', from: 'issueType' # common issue type of the stock
property 'sector'
property 'employees'
property 'tags'
end
end
end