
com.clockworksms.xml.BalanceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clockwork Show documentation
Show all versions of clockwork Show documentation
Clockwork SMS Java wrapper
The newest version!
package com.clockworksms.xml;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name="Balance")
public class BalanceRequest extends XmlRequest {
private String apiKey;
public BalanceRequest() { }
public BalanceRequest(String apiKey) {
this.apiKey = apiKey;
}
@XmlElement(name="Key")
public String getApiKey() {
return apiKey;
}
public void setApiKey(String apiKey) {
this.apiKey = apiKey;
}
public Class getResponseClassType() {
return BalanceResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy