module NgpVan::Client::Notes
Public Instance Methods
note_categories(params: {})
click to toggle source
# File lib/ngp_van/client/notes.rb, line 10 def note_categories(params: {}) get(path: 'notes/categories', params: params) end
note_category(id:, params: {})
click to toggle source
# File lib/ngp_van/client/notes.rb, line 14 def note_category(id:, params: {}) verify_id(id) get(path: "notes/categories/#{id}", params: params) end
note_category_types(params: {})
click to toggle source
# File lib/ngp_van/client/notes.rb, line 6 def note_category_types(params: {}) get(path: 'notes/categoryTypes', params: params) end