module GmanClient::CommodityMerchandising::BulkContracts

Public Instance Methods

bulk_contracts() click to toggle source
# File lib/gman_client/commodity_merchandising/bulk_contracts.rb, line 6
def bulk_contracts
  response = attempt(@retry_attempts) do
    request
      .api
      .v1
      .commodity_merchandising
      .bulk_contracts
      .get
  end

  response.map(&:to_h)
end