/// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="refId">The GUID that uniquely identifies an instance of this object.</param>
 ///<param name="sectionItemSequenceType">Specifies how items are presented to the test taker.</param>
 ///
 public Sif3AssessmentSection(string refId, SectionItemSequenceType sectionItemSequenceType) : base(Adk.SifVersion, AssessmentDTD.SIF3ASSESSMENTSECTION)
 {
     this.RefId = refId;
     this.SetSectionItemSequenceType(sectionItemSequenceType);
 }
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="refId">The GUID that uniquely identifies an instance of this object.</param>
 ///<param name="sectionItemSequenceType">Specifies how items are presented to the test taker.</param>
 ///
 public Sif3AssessmentSection( string refId, SectionItemSequenceType sectionItemSequenceType )
     : base(Adk.SifVersion, AssessmentDTD.SIF3ASSESSMENTSECTION)
 {
     this.RefId = refId;
     this.SetSectionItemSequenceType( sectionItemSequenceType );
 }
 /// <summary>
 /// Sets the value of the <c>&lt;SectionItemSequenceType&gt;</c> element.
 /// </summary>
 /// <param name="val">A SectionItemSequenceType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Specifies how items are presented to the test taker."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void SetSectionItemSequenceType(SectionItemSequenceType val)
 {
     SetField(AssessmentDTD.SIF3ASSESSMENTSECTION_SECTIONITEMSEQUENCETYPE, val);
 }
 /// <summary>
 /// Sets the value of the <c>&lt;SectionItemSequenceType&gt;</c> element.
 /// </summary>
 /// <param name="val">A SectionItemSequenceType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Specifies how items are presented to the test taker."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void SetSectionItemSequenceType( SectionItemSequenceType val )
 {
     SetField( AssessmentDTD.SIF3ASSESSMENTSECTION_SECTIONITEMSEQUENCETYPE, val );
 }