@@ -119,7 +119,6 @@ type Client struct {
119119 Status StatusService
120120 Derivatives DerivativesService
121121 Funding FundingService
122- Pulse PulseService
123122 Invoice InvoiceService
124123 Market MarketService
125124
@@ -708,63 +707,6 @@ func (s *PositionService) Claim(cp *position.ClaimRequest) (*notification.Notifi
708707Claim - submits a request to claim an active position with the given id see
709708https:// docs.bitfinex.com/reference#claim-position for more info
710709
711- #### type PulseService
712-
713- ```go
714- type PulseService struct {
715- Synchronous
716- }
717- ```
718-
719-
720- #### func (* PulseService) AddComment
721-
722- ``` go
723- func (ps *PulseService ) AddComment (p *pulse .Pulse ) (*pulse .Pulse , error )
724- ```
725- AddComment submits pulse comment see
726- https:// docs.bitfinex.com/reference#rest-auth-pulse-add
727-
728- #### func (*PulseService) AddPulse
729-
730- ```go
731- func (ps *PulseService) AddPulse(p *pulse.Pulse) (*pulse.Pulse, error)
732- ```
733- AddPulse submits pulse message see
734- https:// docs.bitfinex.com/reference#rest-auth-pulse-add
735-
736- #### func (*PulseService) DeletePulse
737-
738- ```go
739- func (ps *PulseService) DeletePulse(pid string) (int, error)
740- ```
741- DeletePulse removes your pulse message. Returns 0 if no pulse was deleted and 1
742- if it was see https:// docs.bitfinex.com/reference#rest-auth-pulse-del
743-
744- #### func (*PulseService) PublicPulseHistory
745-
746- ```go
747- func (ps *PulseService) PublicPulseHistory(limit int, end common.Mts) ([]*pulse.Pulse, error)
748- ```
749- PublicPulseHistory returns latest pulse messages. You can specify an end
750- timestamp to view older messages. see
751- https:// docs.bitfinex.com/reference#rest-public-pulse-hist
752-
753- #### func (*PulseService) PublicPulseProfile
754-
755- ```go
756- func (ps *PulseService) PublicPulseProfile(nickname Nickname) (*pulseprofile.PulseProfile, error)
757- ```
758- PublicPulseProfile returns details for a specific Pulse profile
759- https:// docs.bitfinex.com/reference#rest-public-pulse-profile
760-
761- #### func (*PulseService) PulseHistory
762-
763- ```go
764- func (ps *PulseService) PulseHistory() ([]*pulse.Pulse, error)
765- ```
766- PulseHistory allows you to retrieve your pulse history. see
767- https:// docs.bitfinex.com/reference#rest-auth-pulse-hist
768710
769711#### type Request
770712
0 commit comments