intrinio-sdk 5.9.0 → 5.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 234ad7b8a108ef1aaf59728e0fbe56609ec124446ea6769551af0452e154458d
|
|
4
|
+
data.tar.gz: b8b941551edcf3d3e093a605e697726db5294a35159dba917da1d38ebc7efa88
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd40a85fb4800fa408c54f91fe3abd519f2aefa40f7a6ed934e025d41f1a9acdacf17898a5f8275a0ab96dbfee949288c5fecf5a8090d75748cb29a9de82a100
|
|
7
|
+
data.tar.gz: b91ba0e2baa67e6373c6adcf082b51928403f83ac6a865e86a66ba60561d14b3110f4586dd9695340c262379919e7e551b7335b394a70c04c23dd505ad838f22
|
data/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a
|
|
|
9
9
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
10
10
|
|
|
11
11
|
- API version: 2.19.0
|
|
12
|
-
- Package version: 5.9.
|
|
12
|
+
- Package version: 5.9.1
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
@@ -12,13 +12,16 @@
|
|
|
12
12
|
|
|
13
13
|
Name | Type | Description
|
|
14
14
|
------------ | ------------- | -------------
|
|
15
|
-
**holdings** |
|
|
15
|
+
**holdings** | [**Array<ETFHolding>**](ETFHolding.md) |
|
|
16
16
|
**etf** | [**ETFSummary**](ETFSummary.md) |
|
|
17
17
|
**next_page** | String | The token required to request the next page of the data. If null, no further results are available.
|
|
18
18
|
|
|
19
19
|
[//]: # (END_DEFINITION)
|
|
20
20
|
|
|
21
21
|
|
|
22
|
+
[//]: # (CONTAINED_CLASS:Intrinio::ETFHolding)
|
|
23
|
+
|
|
24
|
+
|
|
22
25
|
[//]: # (CONTAINED_CLASS:Intrinio::ETFSummary)
|
|
23
26
|
|
|
24
27
|
|
data/docs/ApiResponseETFs.md
CHANGED
|
@@ -12,10 +12,13 @@
|
|
|
12
12
|
|
|
13
13
|
Name | Type | Description
|
|
14
14
|
------------ | ------------- | -------------
|
|
15
|
-
**etfs** |
|
|
15
|
+
**etfs** | [**Array<ETFSummary>**](ETFSummary.md) |
|
|
16
16
|
**next_page** | String | The token required to request the next page of the data. If null, no further results are available.
|
|
17
17
|
|
|
18
18
|
[//]: # (END_DEFINITION)
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
[//]: # (CONTAINED_CLASS:Intrinio::ETFSummary)
|
|
22
|
+
|
|
23
|
+
|
|
21
24
|
|
|
@@ -32,7 +32,7 @@ module Intrinio
|
|
|
32
32
|
# Attribute type mapping.
|
|
33
33
|
def self.swagger_types
|
|
34
34
|
{
|
|
35
|
-
:'etfs' => :'
|
|
35
|
+
:'etfs' => :'Array<ETFSummary>',
|
|
36
36
|
:'next_page' => :'String'
|
|
37
37
|
}
|
|
38
38
|
end
|
|
@@ -46,7 +46,9 @@ module Intrinio
|
|
|
46
46
|
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
47
47
|
|
|
48
48
|
if attributes.has_key?(:'etfs')
|
|
49
|
-
|
|
49
|
+
if (value = attributes[:'etfs']).is_a?(Array)
|
|
50
|
+
self.etfs = value
|
|
51
|
+
end
|
|
50
52
|
end
|
|
51
53
|
|
|
52
54
|
if attributes.has_key?(:'next_page')
|
|
@@ -35,7 +35,7 @@ module Intrinio
|
|
|
35
35
|
# Attribute type mapping.
|
|
36
36
|
def self.swagger_types
|
|
37
37
|
{
|
|
38
|
-
:'holdings' => :'
|
|
38
|
+
:'holdings' => :'Array<ETFHolding>',
|
|
39
39
|
:'etf' => :'ETFSummary',
|
|
40
40
|
:'next_page' => :'String'
|
|
41
41
|
}
|
|
@@ -50,7 +50,9 @@ module Intrinio
|
|
|
50
50
|
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
51
51
|
|
|
52
52
|
if attributes.has_key?(:'holdings')
|
|
53
|
-
|
|
53
|
+
if (value = attributes[:'holdings']).is_a?(Array)
|
|
54
|
+
self.holdings = value
|
|
55
|
+
end
|
|
54
56
|
end
|
|
55
57
|
|
|
56
58
|
if attributes.has_key?(:'etf')
|
data/lib/intrinio-sdk/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: intrinio-sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.9.
|
|
4
|
+
version: 5.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Intrinio
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-03-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|