# File lib/vagrant_cloud/box.rb, line 12
    def initialize(account, name = nil, data = nil, short_description = nil, description = nil, access_token = nil, custom_server = nil)
      @account = account
      @name = name
      @data = data
      @description = description
      @short_description = short_description
      @client = Client.new(access_token, custom_server)
    end