Class: KaveRestApi::ResponseDeliver

Inherits:
Object
  • Object
show all
Defined in:
lib/kave_rest_api/responds/deliver.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



3
4
5
# File 'lib/kave_rest_api/responds/deliver.rb', line 3

def response
  @response
end

#statusObject (readonly)

Returns the value of attribute status.



3
4
5
# File 'lib/kave_rest_api/responds/deliver.rb', line 3

def status
  @status
end

#statusmessageObject (readonly)

Returns the value of attribute statusmessage.



3
4
5
# File 'lib/kave_rest_api/responds/deliver.rb', line 3

def statusmessage
  @statusmessage
end

Instance Method Details

#entries(select = nil) ⇒ Object



15
16
17
18
19
20
21
22
23
# File 'lib/kave_rest_api/responds/deliver.rb', line 15

def entries(select=nil)
  if select.nil?
    return @response['entries']
  else
    return @response['entries'].select { |en|
    en['status'] == (KaveRestApi::ENTRIES[select].nil? ? select:KaveRestApi::ENTRIES[select])
    }
  end
end

#full_message_errorsObject



25
26
27
# File 'lib/kave_rest_api/responds/deliver.rb', line 25

def full_message_errors
  return KaveRestApi::ERRORS[@response['return']['status'].to_s]
end

#valid?Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/kave_rest_api/responds/deliver.rb', line 11

def valid?
  @valid
end

#validate(response = nil) ⇒ Object



5
6
7
8
9
# File 'lib/kave_rest_api/responds/deliver.rb', line 5

def validate(response = nil)
  @response = response
  perform_validation
  return self
end