Class: Pipedrive
- Inherits:
-
Object
- Object
- Pipedrive
- Defined in:
- lib/pipedrive_jetrockets.rb
Class Method Summary collapse
- .deal_fields ⇒ Object
- .deals ⇒ Object
- .notes ⇒ Object
- .organization_fields ⇒ Object
- .organizations ⇒ Object
- .person_fields ⇒ Object
- .persons ⇒ Object
- .pipelines ⇒ Object
- .stages ⇒ Object
Class Method Details
.deal_fields ⇒ Object
17 18 19 |
# File 'lib/pipedrive_jetrockets.rb', line 17 def self.deal_fields @@deal_fields_service ||= PipedriveJetrockets::FieldService.new('dealField') end |
.deals ⇒ Object
13 14 15 |
# File 'lib/pipedrive_jetrockets.rb', line 13 def self.deals @@deals_service ||= PipedriveJetrockets::Service.new('deal') end |
.notes ⇒ Object
21 22 23 |
# File 'lib/pipedrive_jetrockets.rb', line 21 def self.notes @@notes_service ||= PipedriveJetrockets::Service.new('note') end |
.organization_fields ⇒ Object
29 30 31 |
# File 'lib/pipedrive_jetrockets.rb', line 29 def self.organization_fields @@organization_fields ||= PipedriveJetrockets::FieldService.new('organizationField') end |
.organizations ⇒ Object
25 26 27 |
# File 'lib/pipedrive_jetrockets.rb', line 25 def self.organizations @@organizations_service ||= PipedriveJetrockets::Service.new('organization') end |
.person_fields ⇒ Object
37 38 39 |
# File 'lib/pipedrive_jetrockets.rb', line 37 def self.person_fields @@person_fields ||= PipedriveJetrockets::FieldService.new('personField') end |
.persons ⇒ Object
33 34 35 |
# File 'lib/pipedrive_jetrockets.rb', line 33 def self.persons @@persons_service ||= PipedriveJetrockets::PersonService.new('person') end |
.pipelines ⇒ Object
41 42 43 |
# File 'lib/pipedrive_jetrockets.rb', line 41 def self.pipelines @@pipelines_service ||= PipedriveJetrockets::Service.new('pipeline') end |
.stages ⇒ Object
45 46 47 |
# File 'lib/pipedrive_jetrockets.rb', line 45 def self.stages @@stages_service ||= PipedriveJetrockets::Service.new('stage') end |