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

com.github.segmentio.models.Batch Maven / Gradle / Ivy

package com.github.segmentio.models;

import java.util.List;

import org.joda.time.DateTime;

public class Batch {

	private String writeKey;
	private List batch;
	private DateTime requestTimestamp;
	
	public Batch(String writeKey, List batch) {
		this.writeKey = writeKey;
		this.batch = batch;
	}
	
	public String getWriteKey() {
		return writeKey;
	}
	
	public void setWriteKey(String writeKey) {
		this.writeKey = writeKey;
	}
	
	public List getBatch() {
		return batch;
	}
	
	public void setBatch(List batch) {
		this.batch = batch;
	}
	
	public DateTime getRequestTimestamp() {
		return requestTimestamp;
	}
	
	public void setRequestTimestamp(DateTime requestTimestamp) {
		this.requestTimestamp = requestTimestamp;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy