com.netuitive.iris.entity.Attribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iris Show documentation
Show all versions of iris Show documentation
Java SDK for the Netuitive REST API
The newest version!
package com.netuitive.iris.entity;
import lombok.Data;
/**
* @author John King
*/
@Data
public class Attribute {
private String id;
private Long dataSourceId;
private String name;
private String value;
private AttributeType attributeType;
}