Skip to content

Commit d5fd969

Browse files
committed
Remove beta notes
1 parent 79b6854 commit d5fd969

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

rest/reference.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,6 @@ func (c *ReferenceClient) ListOptionsContracts(ctx context.Context, params *mode
209209
}
210210

211211
// ListShortInterest retrieves short interest data for stocks, including days to cover and average daily volume.
212-
// Note: this method utilizes an experimental API and could experience breaking changes or deprecation.
213212
func (c *ReferenceClient) ListShortInterest(ctx context.Context, params *models.ListShortInterestParams, options ...models.RequestOption) *iter.Iter[models.ShortInterest] {
214213
return iter.NewIter(ctx, ListShortInterestPath, params, func(uri string) (iter.ListResponse, []models.ShortInterest, error) {
215214
res := &models.ListShortInterestResponse{}
@@ -219,7 +218,6 @@ func (c *ReferenceClient) ListShortInterest(ctx context.Context, params *models.
219218
}
220219

221220
// ListShortVolume retrieves short volume data for stocks, including venue-specific volumes and short volume ratio.
222-
// Note: this method utilizes an experimental API and could experience breaking changes or deprecation.
223221
func (c *ReferenceClient) ListShortVolume(ctx context.Context, params *models.ListShortVolumeParams, options ...models.RequestOption) *iter.Iter[models.ShortVolume] {
224222
return iter.NewIter(ctx, ListShortVolumePath, params, func(uri string) (iter.ListResponse, []models.ShortVolume, error) {
225223
res := &models.ListShortVolumeResponse{}
@@ -229,7 +227,6 @@ func (c *ReferenceClient) ListShortVolume(ctx context.Context, params *models.Li
229227
}
230228

231229
// ListTreasuryYields retrieves treasury yield data for U.S. Treasury securities at various maturities.
232-
// Note: this method utilizes an experimental API and could experience breaking changes or deprecation.
233230
func (c *ReferenceClient) ListTreasuryYields(ctx context.Context, params *models.ListTreasuryYieldsParams, options ...models.RequestOption) *iter.Iter[models.TreasuryYield] {
234231
return iter.NewIter(ctx, ListTreasuryYieldsPath, params, func(uri string) (iter.ListResponse, []models.TreasuryYield, error) {
235232
res := &models.ListTreasuryYieldsResponse{}

0 commit comments

Comments
 (0)