Method: B2bCenterApi::RemoteAuction#get_data

Defined in:
lib/b2b_center_api/remote_auction.rb

#get_data(auction_id) ⇒ WebService::Types::AuctionData

Получить данные аукциона

Parameters:

  • auction_id (Integer)

    Номер процедуры

Returns:



88
89
90
91
# File 'lib/b2b_center_api/remote_auction.rb', line 88

def get_data(auction_id)
  response = @client_web.command :get_data, auction_id: auction_id
  WebService::Types::AuctionData.from_response(response, @client, auction_id)
end