com.github.jamesnetherton.zulip.client.api.invitation.request.InvitationRequestConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zulip-java-client Show documentation
Show all versions of zulip-java-client Show documentation
Java client for the Zulip REST API
The newest version!
package com.github.jamesnetherton.zulip.client.api.invitation.request;
final class InvitationRequestConstants {
final static String INVITATIONS_API_PATH = "invites";
final static String INVITATIONS_WITH_ID = INVITATIONS_API_PATH + "/%d";
final static String MULTIUSE_API_PATH = INVITATIONS_API_PATH + "/multiuse";
final static String MULTIUSE_WITH_ID = MULTIUSE_API_PATH + "/%d";
final static String RESEND = INVITATIONS_WITH_ID + "/resend";
private InvitationRequestConstants() {
}
}