module Scrivito class Revision < Struct.new(:id, :content_state, :workspace) def initialize(options) super(*options.values_at(:id, :content_state, :workspace)) end end end