Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ailabs-software/f31d64c46c8fb3562851d908dfbf836a to your computer and use it in GitHub Desktop.
Save ailabs-software/f31d64c46c8fb3562851d908dfbf836a to your computer and use it in GitHub Desktop.
package client.model;
import java.util.List;
import jsinterop.annotations.JsType;
import jsinterop.annotations.JsOverlay;
import static jsinterop.annotations.JsPackage.GLOBAL;
@JsType(isNative=true, namespace=GLOBAL, name="Object")
public class PipelineItemLayoutModel
{
public String templateName;
public int alignment; // 0 is left, 1 is right
public int openType;
public String button;
public String buttonTheme;
public String buttonColor;
public List<String> activeFields;
@JsOverlay
public final boolean equals(Object obj)
{
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment