# File lib/fog/aws/parsers/compute/describe_account_attributes.rb, line 20
          def end_element(name)
            case name
            when 'attributeName'
              @attribute[name] = value
            when 'attributeValue'
              @attribute['values'] << value
            when['requestId']
              @response[name] = value
            when 'item'
              @response['accountAttributeSet'] << @attribute
              @attribute = { 'values' => []} unless @in_attribute_value_set
            when 'attributeValueSet'
              @in_attribute_value_set = false
            else
            end
            @response['accountAttributeSet'].uniq!
          end