Class: Pipedrive
- Inherits:
- 
      Object
      
        - Object
- Pipedrive
 
- Defined in:
- lib/pipe_rocket.rb
Class Method Summary collapse
- 
  
    
      .deal_fields  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Getting deal_fields service object(PipeRocket::FieldServcice). 
- 
  
    
      .deals  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Getting deal deal_service object(PipeRocket::Servcice). 
- 
  
    
      .files  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Getting files service object(PipeRocket::FileService). 
- 
  
    
      .notes  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Getting note service object(PipeRocket::Servcice). 
- 
  
    
      .organization_fields  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Getting organization_field service object(PipeRocket::FieldServcice). 
- 
  
    
      .organizations  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Getting organization service object(PipeRocket::Servcice). 
- 
  
    
      .person_fields  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Getting person_field service object(PipeRocket::FieldServcice). 
- 
  
    
      .persons  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Getting person service object(PipeRocket::PersonServcice). 
- 
  
    
      .pipelines  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Getting pipeline service object(PipeRocket::Servcice). 
- 
  
    
      .stages  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Getting stages service object(PipeRocket::Servcice). 
Class Method Details
.deal_fields ⇒ Object
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 | 
.deals ⇒ Object
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 | 
.files ⇒ Object
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 | 
.notes ⇒ Object
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_fields ⇒ Object
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 | 
.organizations ⇒ Object
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_fields ⇒ Object
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 | 
.persons ⇒ Object
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 | 
.pipelines ⇒ Object
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 | 
.stages ⇒ Object
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 |