module Helium::Client::Labels

Public Instance Methods

create_label(attributes) click to toggle source
# File lib/helium/client/labels.rb, line 12
def create_label(attributes)
  Label.create(attributes, client: self)
end
label(id) click to toggle source
# File lib/helium/client/labels.rb, line 8
def label(id)
  Label.find(id, client: self)
end
labels() click to toggle source
# File lib/helium/client/labels.rb, line 4
def labels
  Label.all(client: self)
end