Package com.daml.ledger.api.v1
Interface EventQueryServiceOuterClass.GetEventsByContractIdRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EventQueryServiceOuterClass.GetEventsByContractIdRequest
,EventQueryServiceOuterClass.GetEventsByContractIdRequest.Builder
- Enclosing class:
- EventQueryServiceOuterClass
public static interface EventQueryServiceOuterClass.GetEventsByContractIdRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getContractId()
The contract id being queried.com.google.protobuf.ByteString
getContractIdBytes()
The contract id being queried.java.lang.String
getRequestingParties(int index)
The parties whose events the client expects to see.com.google.protobuf.ByteString
getRequestingPartiesBytes(int index)
The parties whose events the client expects to see.int
getRequestingPartiesCount()
The parties whose events the client expects to see.java.util.List<java.lang.String>
getRequestingPartiesList()
The parties whose events the client expects to see.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getContractId
java.lang.String getContractId()
The contract id being queried. Required
string contract_id = 1 [json_name = "contractId"];
- Returns:
- The contractId.
-
getContractIdBytes
com.google.protobuf.ByteString getContractIdBytes()
The contract id being queried. Required
string contract_id = 1 [json_name = "contractId"];
- Returns:
- The bytes for contractId.
-
getRequestingPartiesList
java.util.List<java.lang.String> getRequestingPartiesList()
The parties whose events the client expects to see. The events associated with the contract id will only be returned if the requesting parties includes at least one party that is a stakeholder of the event. For a definition of stakeholders see https://docs.daml.com/concepts/ledger-model/ledger-privacy.html#contract-observers-and-stakeholders Required
repeated string requesting_parties = 2 [json_name = "requestingParties"];
- Returns:
- A list containing the requestingParties.
-
getRequestingPartiesCount
int getRequestingPartiesCount()
The parties whose events the client expects to see. The events associated with the contract id will only be returned if the requesting parties includes at least one party that is a stakeholder of the event. For a definition of stakeholders see https://docs.daml.com/concepts/ledger-model/ledger-privacy.html#contract-observers-and-stakeholders Required
repeated string requesting_parties = 2 [json_name = "requestingParties"];
- Returns:
- The count of requestingParties.
-
getRequestingParties
java.lang.String getRequestingParties(int index)
The parties whose events the client expects to see. The events associated with the contract id will only be returned if the requesting parties includes at least one party that is a stakeholder of the event. For a definition of stakeholders see https://docs.daml.com/concepts/ledger-model/ledger-privacy.html#contract-observers-and-stakeholders Required
repeated string requesting_parties = 2 [json_name = "requestingParties"];
- Parameters:
index
- The index of the element to return.- Returns:
- The requestingParties at the given index.
-
getRequestingPartiesBytes
com.google.protobuf.ByteString getRequestingPartiesBytes(int index)
The parties whose events the client expects to see. The events associated with the contract id will only be returned if the requesting parties includes at least one party that is a stakeholder of the event. For a definition of stakeholders see https://docs.daml.com/concepts/ledger-model/ledger-privacy.html#contract-observers-and-stakeholders Required
repeated string requesting_parties = 2 [json_name = "requestingParties"];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the requestingParties at the given index.
-
-