# File lib/fog/softlayer/models/compute/server.rb, line 400
        def generate_order_template
          copy = self.dup
          copy.pre_save
          return service.generate_bare_metal_order_template(copy.attributes).body if copy.bare_metal?
          service.generate_virtual_guest_order_template(copy.attributes).body
        end