Class: Landslider::WsAccountNoteSearch
- Inherits:
-
WsSearch
- Object
- WsSearch
- Landslider::WsAccountNoteSearch
- Defined in:
- lib/landslider/entities/ws_account_note_search.rb
Instance Attribute Summary (collapse)
- - (Integer) account_id readonly
Attributes inherited from WsSearch
#allow_duplicate_criterion, #first_result_position, #return_deleted_records, #search_criteria, #source_id, #total_results_requested, #updated_on
Instance Method Summary (collapse)
-
- (WsAccountNoteSearch) initialize(account_id)
constructor
A new instance of WsAccountNoteSearch.
- - (Handsoap::XmlMason::Node) soapify_for(msg)
Constructor Details
- (WsAccountNoteSearch) initialize(account_id)
A new instance of WsAccountNoteSearch
9 10 11 |
# File 'lib/landslider/entities/ws_account_note_search.rb', line 9 def initialize(account_id) @account_id = account_id end |
Instance Attribute Details
- (Integer) account_id (readonly)
6 7 8 |
# File 'lib/landslider/entities/ws_account_note_search.rb', line 6 def account_id @account_id end |
Instance Method Details
- (Handsoap::XmlMason::Node) soapify_for(msg)
15 16 17 18 19 20 |
# File 'lib/landslider/entities/ws_account_note_search.rb', line 15 def soapify_for(msg) msg.add('accountNoteSearch') { |crit| crit.add 'accountId', @account_id super(crit) } end |