Package com.daml.ledger.api.v1
Interface TransactionServiceOuterClass.GetTransactionByIdRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TransactionServiceOuterClass.GetTransactionByIdRequest
,TransactionServiceOuterClass.GetTransactionByIdRequest.Builder
- Enclosing class:
- TransactionServiceOuterClass
public static interface TransactionServiceOuterClass.GetTransactionByIdRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getLedgerId()
Must correspond to the ledger ID reported by the Ledger Identification Service.com.google.protobuf.ByteString
getLedgerIdBytes()
Must correspond to the ledger ID reported by the Ledger Identification Service.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.java.lang.String
getTransactionId()
The ID of a particular transaction.com.google.protobuf.ByteString
getTransactionIdBytes()
The ID of a particular transaction.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLedgerId
java.lang.String getLedgerId()
Must correspond to the ledger ID reported by the Ledger Identification Service. Must be a valid LedgerString (as describe in ``value.proto``). Optional
string ledger_id = 1 [json_name = "ledgerId"];
- Returns:
- The ledgerId.
-
getLedgerIdBytes
com.google.protobuf.ByteString getLedgerIdBytes()
Must correspond to the ledger ID reported by the Ledger Identification Service. Must be a valid LedgerString (as describe in ``value.proto``). Optional
string ledger_id = 1 [json_name = "ledgerId"];
- Returns:
- The bytes for ledgerId.
-
getTransactionId
java.lang.String getTransactionId()
The ID of a particular transaction. Must be a valid LedgerString (as describe in ``value.proto``). Required
string transaction_id = 2 [json_name = "transactionId"];
- Returns:
- The transactionId.
-
getTransactionIdBytes
com.google.protobuf.ByteString getTransactionIdBytes()
The ID of a particular transaction. Must be a valid LedgerString (as describe in ``value.proto``). Required
string transaction_id = 2 [json_name = "transactionId"];
- Returns:
- The bytes for transactionId.
-
getRequestingPartiesList
java.util.List<java.lang.String> getRequestingPartiesList()
The parties whose events the client expects to see. Events that are not visible for the parties in this collection will not be present in the response. Each element be a valid PartyIdString (as describe in ``value.proto``). Required
repeated string requesting_parties = 3 [json_name = "requestingParties"];
- Returns:
- A list containing the requestingParties.
-
getRequestingPartiesCount
int getRequestingPartiesCount()
The parties whose events the client expects to see. Events that are not visible for the parties in this collection will not be present in the response. Each element be a valid PartyIdString (as describe in ``value.proto``). Required
repeated string requesting_parties = 3 [json_name = "requestingParties"];
- Returns:
- The count of requestingParties.
-
getRequestingParties
java.lang.String getRequestingParties(int index)
The parties whose events the client expects to see. Events that are not visible for the parties in this collection will not be present in the response. Each element be a valid PartyIdString (as describe in ``value.proto``). Required
repeated string requesting_parties = 3 [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. Events that are not visible for the parties in this collection will not be present in the response. Each element be a valid PartyIdString (as describe in ``value.proto``). Required
repeated string requesting_parties = 3 [json_name = "requestingParties"];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the requestingParties at the given index.
-
-