All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clockworksms.xml.CreditRequest Maven / Gradle / Ivy

package com.clockworksms.xml;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement(name="Credit")
public class CreditRequest extends XmlRequest {

	private String apiKey;
	
	public CreditRequest() { }
	
	public CreditRequest(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 CreditResponse.class;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy