Interface EventOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Event,Event.Builder
public interface EventOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()The ID of the event.com.google.protobuf.ByteStringgetIdBytes()The ID of the event.com.google.protobuf.DurationgetOffset()The offset in seconds if the event type is `PROGRESS`.com.google.protobuf.DurationOrBuildergetOffsetOrBuilder()The offset in seconds if the event type is `PROGRESS`.Event.EventTypegetType()Describes the event that occurred.intgetTypeValue()Describes the event that occurred.StringgetUri()The URI to trigger for this event.com.google.protobuf.ByteStringgetUriBytes()The URI to trigger for this event.booleanhasOffset()The offset in seconds if the event type is `PROGRESS`.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
Describes the event that occurred.
.google.cloud.video.stitcher.v1.Event.EventType type = 1;- Returns:
- The enum numeric value on the wire for type.
-
getType
Event.EventType getType()
Describes the event that occurred.
.google.cloud.video.stitcher.v1.Event.EventType type = 1;- Returns:
- The type.
-
getUri
String getUri()
The URI to trigger for this event.
string uri = 2;- Returns:
- The uri.
-
getUriBytes
com.google.protobuf.ByteString getUriBytes()
The URI to trigger for this event.
string uri = 2;- Returns:
- The bytes for uri.
-
getId
String getId()
The ID of the event.
string id = 3;- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
The ID of the event.
string id = 3;- Returns:
- The bytes for id.
-
hasOffset
boolean hasOffset()
The offset in seconds if the event type is `PROGRESS`.
.google.protobuf.Duration offset = 4;- Returns:
- Whether the offset field is set.
-
getOffset
com.google.protobuf.Duration getOffset()
The offset in seconds if the event type is `PROGRESS`.
.google.protobuf.Duration offset = 4;- Returns:
- The offset.
-
getOffsetOrBuilder
com.google.protobuf.DurationOrBuilder getOffsetOrBuilder()
The offset in seconds if the event type is `PROGRESS`.
.google.protobuf.Duration offset = 4;
-
-