pub struct GetTransactionByIdRequest {
pub update_id: String,
pub requesting_parties: Option<Vec<String>>,
pub transaction_format: Option<Box<TransactionFormat>>,
}
Expand description
GetTransactionByIdRequest : Provided for backwards compatibility, it will be removed in the Canton version 3.4.0.
Fields§
§update_id: String
The ID of a particular transaction. Must be a valid LedgerString (as described in value.proto
). Required
requesting_parties: Option<Vec<String>>
Provided for backwards compatibility, it will be removed in the Canton version 3.4.0. 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 must be a valid PartyIdString (as described in value.proto
). Must be set for GetTransactionTreeById request. Optional for backwards compatibility for GetTransactionById request: if defined transaction_format must be unset (falling back to defaults).
transaction_format: Option<Box<TransactionFormat>>
Implementations§
Source§impl GetTransactionByIdRequest
impl GetTransactionByIdRequest
Sourcepub fn new(update_id: String) -> GetTransactionByIdRequest
pub fn new(update_id: String) -> GetTransactionByIdRequest
Provided for backwards compatibility, it will be removed in the Canton version 3.4.0.
Trait Implementations§
Source§impl Clone for GetTransactionByIdRequest
impl Clone for GetTransactionByIdRequest
Source§fn clone(&self) -> GetTransactionByIdRequest
fn clone(&self) -> GetTransactionByIdRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more