Class: Pipedrive

Inherits:
Object
  • Object
show all
Defined in:
lib/pipe_rocket.rb

Class Method Summary collapse

Class Method Details

.deal_fieldsObject

Getting deal_fields service object(PipeRocket::FieldServcice)



21
22
23
# File 'lib/pipe_rocket.rb', line 21

def self.deal_fields
  @@deal_fields_service ||= PipeRocket::FieldService.new('dealField')
end

.dealsObject

Getting deal deal_service object(PipeRocket::Servcice)



16
17
18
# File 'lib/pipe_rocket.rb', line 16

def self.deals
  @@deals_service ||= PipeRocket::DealService.new('deal')
end

.filesObject

Getting files service object(PipeRocket::FileService)



26
27
28
# File 'lib/pipe_rocket.rb', line 26

def self.files
  @@files_service ||= PipeRocket::FileService.new('file')
end

.notesObject

Getting note service object(PipeRocket::Servcice)



31
32
33
# File 'lib/pipe_rocket.rb', line 31

def self.notes
  @@notes_service ||= PipeRocket::Service.new('note')
end

.organization_fieldsObject

Getting organization_field service object(PipeRocket::FieldServcice)



41
42
43
# File 'lib/pipe_rocket.rb', line 41

def self.organization_fields
  @@organization_fields ||= PipeRocket::FieldService.new('organizationField')
end

.organizationsObject

Getting organization service object(PipeRocket::Servcice)



36
37
38
# File 'lib/pipe_rocket.rb', line 36

def self.organizations
  @@organizations_service ||= PipeRocket::Service.new('organization')
end

.person_fieldsObject

Getting person_field service object(PipeRocket::FieldServcice)



51
52
53
# File 'lib/pipe_rocket.rb', line 51

def self.person_fields
  @@person_fields ||= PipeRocket::FieldService.new('personField')
end

.personsObject

Getting person service object(PipeRocket::PersonServcice)



46
47
48
# File 'lib/pipe_rocket.rb', line 46

def self.persons
  @@persons_service ||= PipeRocket::PersonService.new('person')
end

.pipelinesObject

Getting pipeline service object(PipeRocket::Servcice)



56
57
58
# File 'lib/pipe_rocket.rb', line 56

def self.pipelines
  @@pipelines_service ||= PipeRocket::Service.new('pipeline')
end

.stagesObject

Getting stages service object(PipeRocket::Servcice)



61
62
63
# File 'lib/pipe_rocket.rb', line 61

def self.stages
  @@stages_service ||= PipeRocket::Service.new('stage')
end