# File lib/fog/linode/requests/compute/linode_create.rb, line 33
        def linode_create(datacenter_id, plan_id, payment_term)
          response = Excon::Response.new
          response.status = 200
          response.body = {
            "ERRORARRAY" => [],
            "ACTION"     => "linode.create",
            "DATA"       => { "LinodeID" => rand(1000..9999) }
          }
          response
        end