io.getstream.core.LookupKind Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-java Show documentation
Show all versions of stream-java Show documentation
Stream Feeds Java Client for backend and android integrations
package io.getstream.core;
public enum LookupKind {
ACTIVITY("activity_id"),
ACTIVITY_WITH_DATA("activity_id"),
REACTION("reaction_id"),
USER("user_id");
private final String kind;
LookupKind(String kind) {
this.kind = kind;
}
public String getKind() {
return kind;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy