module Sqoot module Commission # Retrieve information of commissions based on the following parameters # # @param [String] :to Start date # @param [String] :from End date # # @return [Hashie::Mash] def commissions(options={}) get('/v1/commissions', options) end end end