
com.connectifier.xeroclient.models.BankAccount Maven / Gradle / Ivy
package com.connectifier.xeroclient.models;
import java.util.List;
/**
* Schema fragment(s) for this class:
*
* <xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="BankAccount">
* <xs:all>
* <xs:element type="xs:string" name="AccountID" minOccurs="0" maxOccurs="1"/>
* <xs:element type="xs:string" name="Code" minOccurs="0" maxOccurs="1"/>
* <xs:element type="xs:string" name="Name" minOccurs="0" maxOccurs="1"/>
* </xs:all>
* </xs:complexType>
*
*/
public class BankAccount
{
private String accountID;
private String code;
private String name;
/**
* Get the 'AccountID' element value.
*
* @return value
*/
public String getAccountID() {
return accountID;
}
/**
* Set the 'AccountID' element value.
*
* @param accountID
*/
public void setAccountID(String accountID) {
this.accountID = accountID;
}
/**
* Get the 'Code' element value.
*
* @return value
*/
public String getCode() {
return code;
}
/**
* Set the 'Code' element value.
*
* @param code
*/
public void setCode(String code) {
this.code = code;
}
/**
* Get the 'Name' element value.
*
* @return value
*/
public String getName() {
return name;
}
/**
* Set the 'Name' element value.
*
* @param name
*/
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy