com.webcohesion.ofx4j.generated.PresentmentDlvProfile Maven / Gradle / Ivy
Show all versions of ofx4j Show documentation
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.09.09 at 02:21:09 PM MDT
//
package com.webcohesion.ofx4j.generated;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
*
* The OFX element "PRESDLVPROF" is of type "PresentmentDlvProfile"
*
*
* Java class for PresentmentDlvProfile complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PresentmentDlvProfile">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CANSUPPORTGROUPID" type="{http://ofx.net/types/2003/04}BooleanType"/>
* <element name="PROCDAYSOFF" type="{http://ofx.net/types/2003/04}DaysEnum" maxOccurs="unbounded" minOccurs="0"/>
* <element name="CANSUPPORTIMAGES" type="{http://ofx.net/types/2003/04}BooleanType"/>
* <element name="PROCENDTM" type="{http://ofx.net/types/2003/04}TimeType"/>
* <element name="CANUPDATEPRESNAMEADDRESS" type="{http://ofx.net/types/2003/04}BooleanType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PresentmentDlvProfile", propOrder = {
"cansupportgroupid",
"procdaysoff",
"cansupportimages",
"procendtm",
"canupdatepresnameaddress"
})
public class PresentmentDlvProfile {
@XmlElement(name = "CANSUPPORTGROUPID", required = true)
@XmlSchemaType(name = "string")
protected BooleanType cansupportgroupid;
@XmlElement(name = "PROCDAYSOFF")
@XmlSchemaType(name = "string")
protected List procdaysoff;
@XmlElement(name = "CANSUPPORTIMAGES", required = true)
@XmlSchemaType(name = "string")
protected BooleanType cansupportimages;
@XmlElement(name = "PROCENDTM", required = true)
protected String procendtm;
@XmlElement(name = "CANUPDATEPRESNAMEADDRESS", required = true)
@XmlSchemaType(name = "string")
protected BooleanType canupdatepresnameaddress;
/**
* Gets the value of the cansupportgroupid property.
*
* @return
* possible object is
* {@link BooleanType }
*
*/
public BooleanType getCANSUPPORTGROUPID() {
return cansupportgroupid;
}
/**
* Sets the value of the cansupportgroupid property.
*
* @param value
* allowed object is
* {@link BooleanType }
*
*/
public void setCANSUPPORTGROUPID(BooleanType value) {
this.cansupportgroupid = value;
}
/**
* Gets the value of the procdaysoff 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 Jakarta XML Binding object.
* This is why there is not a set
method for the procdaysoff property.
*
*
* For example, to add a new item, do as follows:
*
* getPROCDAYSOFF().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DaysEnum }
*
*
*/
public List getPROCDAYSOFF() {
if (procdaysoff == null) {
procdaysoff = new ArrayList();
}
return this.procdaysoff;
}
/**
* Gets the value of the cansupportimages property.
*
* @return
* possible object is
* {@link BooleanType }
*
*/
public BooleanType getCANSUPPORTIMAGES() {
return cansupportimages;
}
/**
* Sets the value of the cansupportimages property.
*
* @param value
* allowed object is
* {@link BooleanType }
*
*/
public void setCANSUPPORTIMAGES(BooleanType value) {
this.cansupportimages = value;
}
/**
* Gets the value of the procendtm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPROCENDTM() {
return procendtm;
}
/**
* Sets the value of the procendtm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPROCENDTM(String value) {
this.procendtm = value;
}
/**
* Gets the value of the canupdatepresnameaddress property.
*
* @return
* possible object is
* {@link BooleanType }
*
*/
public BooleanType getCANUPDATEPRESNAMEADDRESS() {
return canupdatepresnameaddress;
}
/**
* Sets the value of the canupdatepresnameaddress property.
*
* @param value
* allowed object is
* {@link BooleanType }
*
*/
public void setCANUPDATEPRESNAMEADDRESS(BooleanType value) {
this.canupdatepresnameaddress = value;
}
}