class Pipedrive

Public Class Methods

deal_fields() click to toggle source
# File lib/pipedrive_jetrockets.rb, line 17
def self.deal_fields
  @@deal_fields_service ||= PipedriveJetrockets::FieldService.new('dealField')
end
deals() click to toggle source
# File lib/pipedrive_jetrockets.rb, line 13
def self.deals
  @@deals_service ||= PipedriveJetrockets::Service.new('deal')
end
notes() click to toggle source
# File lib/pipedrive_jetrockets.rb, line 21
def self.notes
  @@notes_service ||= PipedriveJetrockets::Service.new('note')
end
organization_fields() click to toggle source
# File lib/pipedrive_jetrockets.rb, line 29
def self.organization_fields
  @@organization_fields ||= PipedriveJetrockets::FieldService.new('organizationField')
end
organizations() click to toggle source
# File lib/pipedrive_jetrockets.rb, line 25
def self.organizations
  @@organizations_service ||= PipedriveJetrockets::Service.new('organization')
end
person_fields() click to toggle source
# File lib/pipedrive_jetrockets.rb, line 37
def self.person_fields
  @@person_fields ||= PipedriveJetrockets::FieldService.new('personField')
end
persons() click to toggle source
# File lib/pipedrive_jetrockets.rb, line 33
def self.persons
  @@persons_service ||= PipedriveJetrockets::PersonService.new('person')
end
pipelines() click to toggle source
# File lib/pipedrive_jetrockets.rb, line 41
def self.pipelines
  @@pipelines_service ||= PipedriveJetrockets::Service.new('pipeline')
end
stages() click to toggle source
# File lib/pipedrive_jetrockets.rb, line 45
def self.stages
  @@stages_service ||= PipedriveJetrockets::Service.new('stage')
end