# frozen_string_literal: true module OMCMS module Response class Offering < Body def components OMCMS::Component.new(@client, @host, body) end def data OMCMS::OfferingData.new(@client, @host, body) end end end end