Interface RedvoxApiM.RedvoxPacketM.EventStream.EventOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
RedvoxApiM.RedvoxPacketM.EventStream.Event, RedvoxApiM.RedvoxPacketM.EventStream.Event.Builder
Enclosing class:
RedvoxApiM.RedvoxPacketM.EventStream

public static interface RedvoxApiM.RedvoxPacketM.EventStream.EventOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • getDescription

      String getDescription()
       Textual description of the event
       
      string description = 1;
      Returns:
      The description.
    • getDescriptionBytes

      com.google.protobuf.ByteString getDescriptionBytes()
       Textual description of the event
       
      string description = 1;
      Returns:
      The bytes for description.
    • getStringPayloadCount

      int getStringPayloadCount()
       Key-pairs of type string to string
       
      map<string, string> string_payload = 2;
    • containsStringPayload

      boolean containsStringPayload(String key)
       Key-pairs of type string to string
       
      map<string, string> string_payload = 2;
    • getStringPayload

      @Deprecated Map<String,String> getStringPayload()
      Deprecated.
    • getStringPayloadMap

      Map<String,String> getStringPayloadMap()
       Key-pairs of type string to string
       
      map<string, string> string_payload = 2;
    • getStringPayloadOrDefault

      String getStringPayloadOrDefault(String key, String defaultValue)
       Key-pairs of type string to string
       
      map<string, string> string_payload = 2;
    • getStringPayloadOrThrow

      String getStringPayloadOrThrow(String key)
       Key-pairs of type string to string
       
      map<string, string> string_payload = 2;
    • getNumericPayloadCount

      int getNumericPayloadCount()
       Key-pairs of type string to double
       
      map<string, double> numeric_payload = 3;
    • containsNumericPayload

      boolean containsNumericPayload(String key)
       Key-pairs of type string to double
       
      map<string, double> numeric_payload = 3;
    • getNumericPayload

      @Deprecated Map<String,Double> getNumericPayload()
      Deprecated.
    • getNumericPayloadMap

      Map<String,Double> getNumericPayloadMap()
       Key-pairs of type string to double
       
      map<string, double> numeric_payload = 3;
    • getNumericPayloadOrDefault

      double getNumericPayloadOrDefault(String key, double defaultValue)
       Key-pairs of type string to double
       
      map<string, double> numeric_payload = 3;
    • getNumericPayloadOrThrow

      double getNumericPayloadOrThrow(String key)
       Key-pairs of type string to double
       
      map<string, double> numeric_payload = 3;
    • getBooleanPayloadCount

      int getBooleanPayloadCount()
       Key-pairs of type string to boolean
       
      map<string, bool> boolean_payload = 4;
    • containsBooleanPayload

      boolean containsBooleanPayload(String key)
       Key-pairs of type string to boolean
       
      map<string, bool> boolean_payload = 4;
    • getBooleanPayload

      @Deprecated Map<String,Boolean> getBooleanPayload()
      Deprecated.
    • getBooleanPayloadMap

      Map<String,Boolean> getBooleanPayloadMap()
       Key-pairs of type string to boolean
       
      map<string, bool> boolean_payload = 4;
    • getBooleanPayloadOrDefault

      boolean getBooleanPayloadOrDefault(String key, boolean defaultValue)
       Key-pairs of type string to boolean
       
      map<string, bool> boolean_payload = 4;
    • getBooleanPayloadOrThrow

      boolean getBooleanPayloadOrThrow(String key)
       Key-pairs of type string to boolean
       
      map<string, bool> boolean_payload = 4;
    • getBytePayloadCount

      int getBytePayloadCount()
       Key-pairs of type string to bytes.
       This one is mainly for transmitting binary or data that doesn't fit well into one of the other payloads.
       
      map<string, bytes> byte_payload = 5;
    • containsBytePayload

      boolean containsBytePayload(String key)
       Key-pairs of type string to bytes.
       This one is mainly for transmitting binary or data that doesn't fit well into one of the other payloads.
       
      map<string, bytes> byte_payload = 5;
    • getBytePayload

      @Deprecated Map<String,com.google.protobuf.ByteString> getBytePayload()
      Deprecated.
      Use getBytePayloadMap() instead.
    • getBytePayloadMap

      Map<String,com.google.protobuf.ByteString> getBytePayloadMap()
       Key-pairs of type string to bytes.
       This one is mainly for transmitting binary or data that doesn't fit well into one of the other payloads.
       
      map<string, bytes> byte_payload = 5;
    • getBytePayloadOrDefault

      com.google.protobuf.ByteString getBytePayloadOrDefault(String key, com.google.protobuf.ByteString defaultValue)
       Key-pairs of type string to bytes.
       This one is mainly for transmitting binary or data that doesn't fit well into one of the other payloads.
       
      map<string, bytes> byte_payload = 5;
    • getBytePayloadOrThrow

      com.google.protobuf.ByteString getBytePayloadOrThrow(String key)
       Key-pairs of type string to bytes.
       This one is mainly for transmitting binary or data that doesn't fit well into one of the other payloads.
       
      map<string, bytes> byte_payload = 5;
    • getMetadataCount

      int getMetadataCount()
       A map from string to string for including untyped metadata
       
      map<string, string> metadata = 6;
    • containsMetadata

      boolean containsMetadata(String key)
       A map from string to string for including untyped metadata
       
      map<string, string> metadata = 6;
    • getMetadata

      @Deprecated Map<String,String> getMetadata()
      Deprecated.
      Use getMetadataMap() instead.
    • getMetadataMap

      Map<String,String> getMetadataMap()
       A map from string to string for including untyped metadata
       
      map<string, string> metadata = 6;
    • getMetadataOrDefault

      String getMetadataOrDefault(String key, String defaultValue)
       A map from string to string for including untyped metadata
       
      map<string, string> metadata = 6;
    • getMetadataOrThrow

      String getMetadataOrThrow(String key)
       A map from string to string for including untyped metadata
       
      map<string, string> metadata = 6;