pub struct ValidateTravelRuleTransactionParams {
pub travel_rule_validate_transaction_request: TravelRuleValidateTransactionRequest,
pub notation: Option<String>,
pub idempotency_key: Option<String>,
}Expand description
struct for passing parameters to the method
ComplianceApi::validate_travel_rule_transaction
Fields§
§travel_rule_validate_transaction_request: TravelRuleValidateTransactionRequest§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 ValidateTravelRuleTransactionParams
impl ValidateTravelRuleTransactionParams
Sourcepub fn builder() -> ValidateTravelRuleTransactionParamsBuilder
pub fn builder() -> ValidateTravelRuleTransactionParamsBuilder
Create an instance of ValidateTravelRuleTransactionParams using the builder syntax
Trait Implementations§
Source§impl Clone for ValidateTravelRuleTransactionParams
impl Clone for ValidateTravelRuleTransactionParams
Source§fn clone(&self) -> ValidateTravelRuleTransactionParams
fn clone(&self) -> ValidateTravelRuleTransactionParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more