class Acme::Client::Resources::Order

def reload

def reload
  if url.nil?
    raise Acme::Client::Error::OrderNotReloadable, 'Finalized orders are not reloadable for this CA'
  end
  assign_attributes(**@client.order(url: url).to_h)
  true
end