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

io.callstats.sdk.messages.EndPointInfo Maven / Gradle / Ivy

package io.callstats.sdk.messages;

public class EndPointInfo {

	private String endpointType;
	private EndPointData endpointData;
		
	public EndPointInfo(String endpointType, EndPointData endpointData) {
		super();
		this.endpointType = endpointType;
		this.endpointData = endpointData;
	}
	
	public String getEndpointType() {
		return endpointType;
	}
	public void setEndpointType(String endpointType) {
		this.endpointType = endpointType;
	}
	public EndPointData getEndpointData() {
		return endpointData;
	}
	public void setEndpointData(EndPointData endpointData) {
		this.endpointData = endpointData;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy