Package com.daml.ledger.api.v1
Interface EventQueryServiceOuterClass.GetEventsByContractKeyResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EventQueryServiceOuterClass.GetEventsByContractKeyResponse,EventQueryServiceOuterClass.GetEventsByContractKeyResponse.Builder
- Enclosing class:
- EventQueryServiceOuterClass
public static interface EventQueryServiceOuterClass.GetEventsByContractKeyResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventOuterClass.ArchivedEventgetArchiveEvent()The archive event for the create event provided the created contract is archived.EventOuterClass.ArchivedEventOrBuildergetArchiveEventOrBuilder()The archive event for the create event provided the created contract is archived.java.lang.StringgetContinuationToken()If the ``continuation_token`` is populated then there may be additional events available.com.google.protobuf.ByteStringgetContinuationTokenBytes()If the ``continuation_token`` is populated then there may be additional events available.EventOuterClass.CreatedEventgetCreateEvent()The most recent create event for a contract with the key given in the request, if no ``continuation_token`` is provided.EventOuterClass.CreatedEventOrBuildergetCreateEventOrBuilder()The most recent create event for a contract with the key given in the request, if no ``continuation_token`` is provided.booleanhasArchiveEvent()The archive event for the create event provided the created contract is archived.booleanhasCreateEvent()The most recent create event for a contract with the key given in the request, if no ``continuation_token`` is provided.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasCreateEvent
boolean hasCreateEvent()
The most recent create event for a contract with the key given in the request, if no ``continuation_token`` is provided. If a ``continuation_token`` is provided, then this is the most recent create event preceding the create event whose ``continuation_token`` was provided. Optional
.com.daml.ledger.api.v1.CreatedEvent create_event = 1 [json_name = "createEvent"];- Returns:
- Whether the createEvent field is set.
-
getCreateEvent
EventOuterClass.CreatedEvent getCreateEvent()
The most recent create event for a contract with the key given in the request, if no ``continuation_token`` is provided. If a ``continuation_token`` is provided, then this is the most recent create event preceding the create event whose ``continuation_token`` was provided. Optional
.com.daml.ledger.api.v1.CreatedEvent create_event = 1 [json_name = "createEvent"];- Returns:
- The createEvent.
-
getCreateEventOrBuilder
EventOuterClass.CreatedEventOrBuilder getCreateEventOrBuilder()
The most recent create event for a contract with the key given in the request, if no ``continuation_token`` is provided. If a ``continuation_token`` is provided, then this is the most recent create event preceding the create event whose ``continuation_token`` was provided. Optional
.com.daml.ledger.api.v1.CreatedEvent create_event = 1 [json_name = "createEvent"];
-
hasArchiveEvent
boolean hasArchiveEvent()
The archive event for the create event provided the created contract is archived. Optional
.com.daml.ledger.api.v1.ArchivedEvent archive_event = 2 [json_name = "archiveEvent"];- Returns:
- Whether the archiveEvent field is set.
-
getArchiveEvent
EventOuterClass.ArchivedEvent getArchiveEvent()
The archive event for the create event provided the created contract is archived. Optional
.com.daml.ledger.api.v1.ArchivedEvent archive_event = 2 [json_name = "archiveEvent"];- Returns:
- The archiveEvent.
-
getArchiveEventOrBuilder
EventOuterClass.ArchivedEventOrBuilder getArchiveEventOrBuilder()
The archive event for the create event provided the created contract is archived. Optional
.com.daml.ledger.api.v1.ArchivedEvent archive_event = 2 [json_name = "archiveEvent"];
-
getContinuationToken
java.lang.String getContinuationToken()
If the ``continuation_token`` is populated then there may be additional events available. To retrieve these events use the ``continuation_token`` in a subsequent request. Optional
string continuation_token = 4 [json_name = "continuationToken"];- Returns:
- The continuationToken.
-
getContinuationTokenBytes
com.google.protobuf.ByteString getContinuationTokenBytes()
If the ``continuation_token`` is populated then there may be additional events available. To retrieve these events use the ``continuation_token`` in a subsequent request. Optional
string continuation_token = 4 [json_name = "continuationToken"];- Returns:
- The bytes for continuationToken.
-
-