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

org.gs4tr.gcc.restclient.model.HistoryItem Maven / Gradle / Ivy

Go to download

GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.

There is a newer version: 3.1.3
Show newest version
package org.gs4tr.gcc.restclient.model;

import com.fasterxml.jackson.annotation.JsonProperty;

public class HistoryItem {

	@JsonProperty("unique_identifier")
	private String uid;
	@JsonProperty("file_type")
	private String type;

	public HistoryItem() {

	}

	public HistoryItem(String uid, String type) {
		super();
		this.uid = uid;
		this.type = type;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy