Class XjcFee11TrnData

java.lang.Object
google.registry.xjc.XjcObject
google.registry.xjc.fee11.XjcFee11TrnData

public class XjcFee11TrnData extends XjcObject

Java class for transferResultType complex type

.

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

 <complexType name="transferResultType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="currency" type="{urn:ietf:params:xml:ns:fee-0.11}currencyType"/>
         <element name="period" type="{urn:ietf:params:xml:ns:domain-1.0}periodType" minOccurs="0"/>
         <element name="fee" type="{urn:ietf:params:xml:ns:fee-0.11}feeType" maxOccurs="unbounded"/>
         <element name="credit" type="{urn:ietf:params:xml:ns:fee-0.11}creditType" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • XjcFee11TrnData

      public XjcFee11TrnData()
  • Method Details

    • getCurrency

      public String getCurrency()
      Gets the value of the currency property.
      Returns:
      possible object is String
    • setCurrency

      public void setCurrency(String value)
      Sets the value of the currency property.
      Parameters:
      value - allowed object is String
    • getPeriod

      public XjcDomainPeriodType getPeriod()
      Gets the value of the period property.
      Returns:
      possible object is XjcDomainPeriodType
    • setPeriod

      public void setPeriod(XjcDomainPeriodType value)
      Sets the value of the period property.
      Parameters:
      value - allowed object is XjcDomainPeriodType
    • getFees

      public List<XjcFee11FeeType> getFees()
      Gets the value of the fees property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the fees property.

      For example, to add a new item, do as follows:

       getFees().add(newItem);
       
      Objects of the following type(s) are allowed in the list XjcFee11FeeType

      Returns:
      The value of the fees property.
    • getCredits

      public List<XjcFee11CreditType> getCredits()
      Gets the value of the credits property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the credits property.

      For example, to add a new item, do as follows:

       getCredits().add(newItem);
       
      Objects of the following type(s) are allowed in the list XjcFee11CreditType

      Returns:
      The value of the credits property.