Class: Sellsy::Client

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#idObject

Returns the value of attribute id.



5
6
7
# File 'lib/sellsy/clients.rb', line 5

def id
  @id
end

#nameObject

Returns the value of attribute name.



6
7
8
# File 'lib/sellsy/clients.rb', line 6

def name
  @name
end

Instance Method Details

#createObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/sellsy/clients.rb', line 8

def create
  command = {
      'method' => 'Client.create',
      'params' => {
          'third' => {
              'name'			=> @name
          }
      }
  }

  response = MultiJson.load(Sellsy::Api.request command)

  @id = response['response']['client_id']

  return response['status'] == 'success'
end

#updateObject



25
26
27
# File 'lib/sellsy/clients.rb', line 25

def update

end