Package iofXml.v3
Class AssignedFee
-
- All Implemented Interfaces:
public class AssignedFee
Contains information about a fee that has been assigned to a competitor or a team, and the amount that has been paid.
Java class for AssignedFee complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="AssignedFee"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Fee" type="{http://www.orienteering.org/datastandard/3.0}Fee"/> <element name="PaidAmount" type="{http://www.orienteering.org/datastandard/3.0}Amount" minOccurs="0"/> <element name="Extensions" type="{http://www.orienteering.org/datastandard/3.0}Extensions" minOccurs="0"/> </sequence> <attribute name="modifyTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description AssignedFee()
-
Method Summary
Modifier and Type Method Description Fee
getFee()
The fee that has been assigned to the competitor or the team. void
setFee(Fee value)
Sets the value of the fee property. Amount
getPaidAmount()
The amount that has been paid, optionally including currency code. void
setPaidAmount(Amount value)
Sets the value of the paidAmount property. Extensions
getExtensions()
Container element for custom elements from other schemas. void
setExtensions(Extensions value)
Sets the value of the extensions property. XMLGregorianCalendar
getModifyTime()
Gets the value of the modifyTime property. void
setModifyTime(XMLGregorianCalendar value)
Sets the value of the modifyTime property. -
-
Method Detail
-
getFee
Fee getFee()
The fee that has been assigned to the competitor or the team.
- Returns:
possibleobject is Fee
-
setFee
void setFee(Fee value)
Sets the value of the fee property.
- Parameters:
value
- allowed object is Fee
-
getPaidAmount
Amount getPaidAmount()
The amount that has been paid, optionally including currency code.
- Returns:
possibleobject is Amount
-
setPaidAmount
void setPaidAmount(Amount value)
Sets the value of the paidAmount property.
- Parameters:
value
- allowed object is Amount
-
getExtensions
Extensions getExtensions()
Container element for custom elements from other schemas.
- Returns:
possibleobject is Extensions
-
setExtensions
void setExtensions(Extensions value)
Sets the value of the extensions property.
- Parameters:
value
- allowed object is Extensions
-
getModifyTime
XMLGregorianCalendar getModifyTime()
Gets the value of the modifyTime property.
- Returns:
possibleobject is XMLGregorianCalendar
-
setModifyTime
void setModifyTime(XMLGregorianCalendar value)
Sets the value of the modifyTime property.
- Parameters:
value
- allowed object is XMLGregorianCalendar
-
-
-
-