Sha256: cd2e6d96f9d33ac2fbe36c3ed06a8576c346ff6936775d7b2dc0a03aba1184a4
Contents?: true
Size: 448 Bytes
Versions: 2
Compression:
Stored size: 448 Bytes
Contents
class Landslider class WsAccountContactSearch < WsSearch # @return [Integer] attr_reader :account_id # @param [Integer] account_id an account id def initialize(account_id) @account_id = account_id end # @param [Handsoap::XmlMason::Node] msg # @return [Handsoap::XmlMason::Node] def soapify_for(msg) msg.add('accountContactSearch') { |crit| crit.add 'accountId', @account_id super(crit) } end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
landslider-0.5.28 | lib/landslider/entities/ws_account_contact_search.rb |
landslider-0.5.26 | lib/landslider/entities/ws_account_contact_search.rb |