
com.connectifier.xeroclient.models.Hyperlink 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="Hyperlink">
* <xs:sequence>
* <xs:element type="xs:string" name="LinkID" minOccurs="0" maxOccurs="1"/>
* <xs:element type="xs:string" name="Url" minOccurs="0" maxOccurs="1"/>
* <xs:element type="xs:string" name="Description" minOccurs="0" maxOccurs="1"/>
* </xs:sequence>
* </xs:complexType>
*
*/
public class Hyperlink
{
private String linkID;
private String url;
private String description;
/**
* Get the 'LinkID' element value.
*
* @return value
*/
public String getLinkID() {
return linkID;
}
/**
* Set the 'LinkID' element value.
*
* @param linkID
*/
public void setLinkID(String linkID) {
this.linkID = linkID;
}
/**
* Get the 'Url' element value.
*
* @return value
*/
public String getUrl() {
return url;
}
/**
* Set the 'Url' element value.
*
* @param url
*/
public void setUrl(String url) {
this.url = url;
}
/**
* Get the 'Description' element value.
*
* @return value
*/
public String getDescription() {
return description;
}
/**
* Set the 'Description' element value.
*
* @param description
*/
public void setDescription(String description) {
this.description = description;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy