# frozen_string_literal: true require 'happymapper' require_relative 'node' require_relative 'participant' module ForwardCalendar class ThirdPartyParticipants < Node include HappyMapper tag 'thirdPartyParticipants' has_many :participants, Participant, tag: 'participant', xpath: './' end end