Package s2.v1alpha
Interface StreamInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StreamInfo
,StreamInfo.Builder
public interface StreamInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCreatedAt()
Creation time in seconds since Unix epoch.int
getDeletedAt()
Deletion time in seconds since Unix epoch, if the stream is being deleted.java.lang.String
getName()
Stream name.com.google.protobuf.ByteString
getNameBytes()
Stream name.boolean
hasDeletedAt()
Deletion time in seconds since Unix epoch, if the stream is being deleted.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
Stream name.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Stream name.
string name = 1;
- Returns:
- The bytes for name.
-
getCreatedAt
int getCreatedAt()
Creation time in seconds since Unix epoch.
uint32 created_at = 2;
- Returns:
- The createdAt.
-
hasDeletedAt
boolean hasDeletedAt()
Deletion time in seconds since Unix epoch, if the stream is being deleted.
optional uint32 deleted_at = 3;
- Returns:
- Whether the deletedAt field is set.
-
getDeletedAt
int getDeletedAt()
Deletion time in seconds since Unix epoch, if the stream is being deleted.
optional uint32 deleted_at = 3;
- Returns:
- The deletedAt.
-
-