main.java.com.streamlayer.analytics.streaming.v1.SendInvitationsMessageOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sl-protofiles Show documentation
Show all versions of sl-protofiles Show documentation
StreamLayer Java Protofiles
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: streamlayer/analytics/v2/streaming/streaming.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.analytics.streaming.v1;
public interface SendInvitationsMessageOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.analytics.v2.streaming.SendInvitationsMessage)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
* common analytics data amongst calls
* kind: KIND_INVITATION_SENT, KIND_INVITATION_ACCEPTED
* category should be picked from extras
*
*
* .streamlayer.analytics.v2.streaming.CommonData common = 1 [json_name = "common"];
* @return Whether the common field is set.
*/
boolean hasCommon();
/**
*
* common analytics data amongst calls
* kind: KIND_INVITATION_SENT, KIND_INVITATION_ACCEPTED
* category should be picked from extras
*
*
* .streamlayer.analytics.v2.streaming.CommonData common = 1 [json_name = "common"];
* @return The common.
*/
com.streamlayer.analytics.streaming.v1.CommonData getCommon();
/**
*
* invitation category
*
*
* .streamlayer.analytics.v1.invitations.InvitationCategory category = 2 [json_name = "category"];
* @return The enum numeric value on the wire for category.
*/
int getCategoryValue();
/**
*
* invitation category
*
*
* .streamlayer.analytics.v1.invitations.InvitationCategory category = 2 [json_name = "category"];
* @return The category.
*/
com.streamlayer.analytics.invitations.v1.InvitationCategory getCategory();
/**
*
* who is sending the invitation
*
*
* .streamlayer.analytics.v1.invitations.InvitationFrom from = 3 [json_name = "from"];
* @return The enum numeric value on the wire for from.
*/
int getFromValue();
/**
*
* who is sending the invitation
*
*
* .streamlayer.analytics.v1.invitations.InvitationFrom from = 3 [json_name = "from"];
* @return The from.
*/
com.streamlayer.analytics.invitations.v1.InvitationFrom getFrom();
}