module WCC module Media Series = Struct.new(:raw) do def id raw['id']&.to_s end def legacy_id raw['legacy_id']&.to_s end %w[ title subtitle summary date_range messages_count ].each do |att| define_method att do raw[att] end end %w[ images ].each do |att| define_method att do OpenStruct.new(raw[att]) if raw[att] end end undef raw= end end end