We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to the API documentation here: https://developer.ibm.com/apis/catalog/ns1--ibm-ns1-connect-api/api/API--ns1--ibm-ns1-connect-api#getFeed , the feed resource has a "destinations" field. However this field is missing from the client implementation's Feed struct.
Feed
I found the implementation for it in the same file above the Feed:
ns1-go/rest/model/data/feed.go
Lines 3 to 23 in 72c28cb
Extending the struct like this:
type Feed struct { ... Destinations []Destination `json:"destinations"` }
Seems to be working properly for DataFeeds.Get and DataSources.Get.
DataFeeds.Get
DataSources.Get
The text was updated successfully, but these errors were encountered:
fformica
Successfully merging a pull request may close this issue.
According to the API documentation here: https://developer.ibm.com/apis/catalog/ns1--ibm-ns1-connect-api/api/API--ns1--ibm-ns1-connect-api#getFeed , the feed resource has a "destinations" field. However this field is missing from the client implementation's
Feed
struct.I found the implementation for it in the same file above the
Feed
:ns1-go/rest/model/data/feed.go
Lines 3 to 23 in 72c28cb
This struct does not seem to be used anywhere else in the code, so I assume, it was meant to be included but accidentally left out.
Extending the struct like this:
Seems to be working properly for
DataFeeds.Get
andDataSources.Get
.The text was updated successfully, but these errors were encountered: