![JAR search and dependency download from the Maven repository](/logo.png)
io.prismic.AlternateLanguage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-kit Show documentation
Show all versions of java-kit Show documentation
The developer kit to access Prismic.io repositories using the Java language.
The newest version!
package io.prismic;
public class AlternateLanguage {
private final String id;
private final String uid;
private final String type;
private final String lang;
public AlternateLanguage(String id, String uid, String type, String lang) {
this.id = id;
this.uid = uid;
this.type = type;
this.lang = lang;
}
public String getId() {
return id;
}
public String getUid() {
return uid;
}
public String getType() {
return type;
}
public String getLang() {
return lang;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy