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;

public class Batch {

	private String secret;
	private List batch;
	
	public Batch(String secret, List batch) {
		this.secret = secret;
		this.batch = batch;
	}
	
	public String getSecret() {
		return secret;
	}
	
	public void setSecret(String secret) {
		this.secret = secret;
	}
	
	public List getBatch() {
		return batch;
	}
	
	public void setBatch(List batch) {
		this.batch = batch;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy