Interface CreateGroupRequestOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
CreateGroupRequest, CreateGroupRequest.Builder

public interface CreateGroupRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    A URL for an avatar image.
    com.google.protobuf.ByteString
    A URL for an avatar image.
    A description for the group.
    com.google.protobuf.ByteString
    A description for the group.
    The language expected to be a tag which follows the BCP-47 spec.
    com.google.protobuf.ByteString
    The language expected to be a tag which follows the BCP-47 spec.
    int
    Maximum number of group members.
    A unique name for the group.
    com.google.protobuf.ByteString
    A unique name for the group.
    boolean
    Mark a group as open or not where only admins can accept members.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getName

      String getName()
       A unique name for the group.
       
      string name = 1;
      Returns:
      The name.
    • getNameBytes

      com.google.protobuf.ByteString getNameBytes()
       A unique name for the group.
       
      string name = 1;
      Returns:
      The bytes for name.
    • getDescription

      String getDescription()
       A description for the group.
       
      string description = 2;
      Returns:
      The description.
    • getDescriptionBytes

      com.google.protobuf.ByteString getDescriptionBytes()
       A description for the group.
       
      string description = 2;
      Returns:
      The bytes for description.
    • getLangTag

      String getLangTag()
       The language expected to be a tag which follows the BCP-47 spec.
       
      string lang_tag = 3;
      Returns:
      The langTag.
    • getLangTagBytes

      com.google.protobuf.ByteString getLangTagBytes()
       The language expected to be a tag which follows the BCP-47 spec.
       
      string lang_tag = 3;
      Returns:
      The bytes for langTag.
    • getAvatarUrl

      String getAvatarUrl()
       A URL for an avatar image.
       
      string avatar_url = 4;
      Returns:
      The avatarUrl.
    • getAvatarUrlBytes

      com.google.protobuf.ByteString getAvatarUrlBytes()
       A URL for an avatar image.
       
      string avatar_url = 4;
      Returns:
      The bytes for avatarUrl.
    • getOpen

      boolean getOpen()
       Mark a group as open or not where only admins can accept members.
       
      bool open = 5;
      Returns:
      The open.
    • getMaxCount

      int getMaxCount()
       Maximum number of group members.
       
      int32 max_count = 6;
      Returns:
      The maxCount.