# File lib/fog/softlayer/models/account/brands.rb, line 21
        def get(identifier)
          return nil if identifier.nil? || identifier == ""
          data = service.get_brand(identifier).body
          new.merge_attributes(data)
        rescue Excon::Errors::NotFound
          nil
        end