class Hubspot::CompanyProperties

Constants

ALL_GROUPS_PATH
ALL_PROPERTIES_PATH
CREATE_GROUP_PATH
CREATE_PROPERTY_PATH
DELETE_GROUP_PATH
DELETE_PROPERTY_PATH
UPDATE_GROUP_PATH
UPDATE_PROPERTY_PATH

Public Class Methods

add_default_parameters(opts={}) click to toggle source
# File lib/hubspot/company_properties.rb, line 14
def add_default_parameters(opts={})
  superclass.add_default_parameters(opts)
end
all(opts={}, filter={}) click to toggle source
# File lib/hubspot/company_properties.rb, line 18
def all(opts={}, filter={})
  superclass.all(ALL_PROPERTIES_PATH, opts, filter)
end
create!(params={}) click to toggle source
# File lib/hubspot/company_properties.rb, line 26
def create!(params={})
  superclass.create!(CREATE_PROPERTY_PATH, params)
end
create_group!(params={}) click to toggle source
# File lib/hubspot/company_properties.rb, line 38
def create_group!(params={})
  superclass.create_group!(CREATE_GROUP_PATH, params)
end
delete!(property_name) click to toggle source
# File lib/hubspot/company_properties.rb, line 34
def delete!(property_name)
  superclass.delete!(DELETE_PROPERTY_PATH, property_name)
end
delete_group!(group_name) click to toggle source
# File lib/hubspot/company_properties.rb, line 46
def delete_group!(group_name)
  superclass.delete_group!(DELETE_GROUP_PATH, group_name)
end
groups(opts={}, filter={}) click to toggle source
# File lib/hubspot/company_properties.rb, line 22
def groups(opts={}, filter={})
  superclass.groups(ALL_GROUPS_PATH, opts, filter)
end
same?(src, dst) click to toggle source
# File lib/hubspot/company_properties.rb, line 50
def same?(src, dst)
  superclass.same?(src, dst)
end
update!(property_name, params={}) click to toggle source
# File lib/hubspot/company_properties.rb, line 30
def update!(property_name, params={})
  superclass.update!(UPDATE_PROPERTY_PATH, property_name, params)
end
update_group!(group_name, params={}) click to toggle source
# File lib/hubspot/company_properties.rb, line 42
def update_group!(group_name, params={})
  superclass.update_group!(UPDATE_GROUP_PATH, group_name, params)
end
valid_params(params) click to toggle source
# File lib/hubspot/company_properties.rb, line 54
def valid_params(params)
  superclass.valid_params(params)
end