Class: Cb::Criteria::User::ChangePassword

Inherits:
Object
  • Object
show all
Defined in:
lib/cb/criteria/user/change_password.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ ChangePassword

Returns a new instance of ChangePassword.



18
19
20
21
22
23
# File 'lib/cb/criteria/user/change_password.rb', line 18

def initialize(args = {})
  @external_id                  = args[:external_id] || ''
  @old_password                 = args[:old_password] || ''
  @new_password                 = args[:new_password] || ''
  @test                         = args[:test] || 'false'
end

Instance Attribute Details

#external_idObject

Returns the value of attribute external_id.



17
18
19
# File 'lib/cb/criteria/user/change_password.rb', line 17

def external_id
  @external_id
end

#new_passwordObject

Returns the value of attribute new_password.



17
18
19
# File 'lib/cb/criteria/user/change_password.rb', line 17

def new_password
  @new_password
end

#old_passwordObject

Returns the value of attribute old_password.



17
18
19
# File 'lib/cb/criteria/user/change_password.rb', line 17

def old_password
  @old_password
end

#testObject

Returns the value of attribute test.



17
18
19
# File 'lib/cb/criteria/user/change_password.rb', line 17

def test
  @test
end

Instance Method Details

#to_xmlObject



25
26
27
28
29
30
31
32
33
34
35
# File 'lib/cb/criteria/user/change_password.rb', line 25

def to_xml
  Nokogiri::XML::Builder.new do |xml|
    xml.Request do
      xml.DeveloperKey Cb.configuration.dev_key
      xml.ExternalID external_id
      xml.OldPassword old_password
      xml.NewPassword new_password
      xml.Test test
    end
  end.to_xml
end