# File lib/fog/cloudstack/requests/compute/list_usage_records.rb, line 9
        def list_usage_records(options={})
          options.merge!(
            'command' => 'listUsageRecords'
          )
          
          if startdate = options.delete('startdate')
            options.merge!('startdate' => startdate.strftime('%Y-%m-%d'))
          end
          
          if enddate = options.delete('enddate')
            options.merge!('enddate' => enddate.strftime('%Y-%m-%d'))
          end
          
          request(options)
        end