Versions in this module Expand all Collapse all v3 v3.7.1 Feb 23, 2022 v3.7.0 Oct 11, 2021 Changes in this version + type CreateRequest struct + Text string + Title string + type CreateResponse struct + Note *Note + type DeleteRequest struct + Id string + type DeleteResponse struct + Note *Note + type ListRequest struct + type ListResponse struct + Notes []Note + type Note struct + Created string + Id string + Text string + Title string + Updated string + type NotesService struct + func NewNotesService(token string) *NotesService + func (t *NotesService) Create(request *CreateRequest) (*CreateResponse, error) + func (t *NotesService) Delete(request *DeleteRequest) (*DeleteResponse, error) + func (t *NotesService) List(request *ListRequest) (*ListResponse, error) + func (t *NotesService) Read(request *ReadRequest) (*ReadResponse, error) + func (t *NotesService) Subscribe(request *SubscribeRequest) (*SubscribeResponse, error) + func (t *NotesService) Update(request *UpdateRequest) (*UpdateResponse, error) + type ReadRequest struct + Id string + type ReadResponse struct + Note *Note + type SubscribeRequest struct + Id string + type SubscribeResponse struct + Event string + Note *Note + type UpdateRequest struct + Note *Note + type UpdateResponse struct + Note *Note