Module: UniOne::Client::Project

Extended by:
Validation::ClassMethods
Includes:
Validation::InstanceMethods
Included in:
UniOne::Client
Defined in:
lib/unione/client/project.rb

Instance Method Summary collapse

Methods included from Validation::ClassMethods

add_response_validations

Instance Method Details

#create_project(params = {}) ⇒ Object



7
8
9
# File 'lib/unione/client/project.rb', line 7

def create_project(params = {})
  post('project/create.json', params)
end

#delete_project(params = {}) ⇒ Object



19
20
21
# File 'lib/unione/client/project.rb', line 19

def delete_project(params = {})
  post('project/delete.json', params)
end

#list_projects(params = {}) ⇒ Object



15
16
17
# File 'lib/unione/client/project.rb', line 15

def list_projects(params = {})
  post('project/list.json', params)
end

#update_project(params = {}) ⇒ Object



11
12
13
# File 'lib/unione/client/project.rb', line 11

def update_project(params = {})
  post('project/update.json', params)
end