StartTimeAllocationRequest

Used to state start time allocation requests. It consists of a possible reference Organisation or Person and the allocation request, e.g. late start or grouped with the reference Organisation/Person. This way it is possible to state requests to the event organizer so that e.g. all members of an organisation has start times close to each other - or parents have start times far from each other. It is totally up to the event software and organizers whether they will support such requests.

Java class for StartTimeAllocationRequest complex type

.

The following schema fragment specifies the expected content contained within this class.


<complexType name="StartTimeAllocationRequest">
  <complexContent>
    <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
      <sequence>
        <element name="Organisation" type="{http://www.orienteering.org/datastandard/3.0}Organisation" minOccurs="0"/>
        <element name="Person" type="{http://www.orienteering.org/datastandard/3.0}Person" minOccurs="0"/>
      </sequence>
      <attribute name="type" default="Normal">
        <simpleType>
          <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
            <enumeration value="Normal"/>
            <enumeration value="EarlyStart"/>
            <enumeration value="LateStart"/>
            <enumeration value="SeparatedFrom"/>
            <enumeration value="GroupedWith"/>
          </restriction>
        </simpleType>
      </attribute>
    </restriction>
  </complexContent>
</complexType>

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
The reference organisation for the start time allocation request.
Link copied to clipboard
open fun getPerson(): Person
The reference person for the start time allocation request.
Link copied to clipboard
open fun getType(): String
The type of start time allocation request.
Link copied to clipboard
open fun setOrganisation(value: Organisation)
Sets the value of the organisation property.
Link copied to clipboard
open fun setPerson(value: Person)
Sets the value of the person property.
Link copied to clipboard
open fun setType(value: String)
Sets the value of the type property.