pub struct ValidateFullTravelRuleTransactionParams {
pub travel_rule_validate_full_transaction_request: TravelRuleValidateFullTransactionRequest,
pub notation: Option<String>,
pub idempotency_key: Option<String>,
}Expand description
struct for passing parameters to the method
ComplianceApi::validate_full_travel_rule_transaction
Fields§
§travel_rule_validate_full_transaction_request: TravelRuleValidateFullTransactionRequest§notation: Option<String>Specifies the notation of the transaction. Possible values are -
notabene: Uses Notabene notation (default behavior). - fireblocks:
Uses Fireblocks notation, with automatic translation of asset tickers
and amounts. - <none>: Defaults to notabene for backward
compatibility. Note: The default value for the notation parameter
will change from notabene to fireblocks Update your integrations
accordingly.
idempotency_key: Option<String>A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours.
Implementations§
Source§impl ValidateFullTravelRuleTransactionParams
impl ValidateFullTravelRuleTransactionParams
Sourcepub fn builder() -> ValidateFullTravelRuleTransactionParamsBuilder
pub fn builder() -> ValidateFullTravelRuleTransactionParamsBuilder
Create an instance of ValidateFullTravelRuleTransactionParams using the builder syntax
Trait Implementations§
Source§impl Clone for ValidateFullTravelRuleTransactionParams
impl Clone for ValidateFullTravelRuleTransactionParams
Source§fn clone(&self) -> ValidateFullTravelRuleTransactionParams
fn clone(&self) -> ValidateFullTravelRuleTransactionParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more