Sha256: d9898bb71235b6377c692787512c95dabf29c44ebe63dd1a98b97f068f51e57b

Contents?: true

Size: 633 Bytes

Versions: 2

Compression:

Stored size: 633 Bytes

Contents

# frozen_string_literal: true

require 'portfolio_manager/rest/utils'

module PortfolioManager
  module REST
    ##
    # Basic account
    # @see http://portfoliomanager.energystar.gov/webservices/home/api/account
    module Account
      include PortfolioManager::REST::Utils

      ##
      # This web service retrieves your account information that includes your
      # username, password, contact information, & security questions/answers.
      #
      # @see http://portfoliomanager.energystar.gov/webservices/home/api/account/account/get
      def account
        perform_get_request('/account')
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
portfolio_manager-0.5.0 lib/portfolio_manager/rest/account.rb
portfolio_manager-0.4.0 lib/portfolio_manager/rest/account.rb