pub struct SearchTicketsParams {
pub q: Option<String>,
pub statuses: Option<Vec<String>>,
pub network_id: Option<String>,
pub created_by_me: Option<bool>,
pub expires_after: Option<String>,
pub expires_before: Option<String>,
pub type: Option<String>,
pub external_ref_id: Option<String>,
pub after: Option<String>,
pub limit: Option<f64>,
}Expand description
struct for passing parameters to the method
SmartTransfersApi::search_tickets
Fields§
§q: Option<String>Search string - counterparty name or asset or ticketId. Optional
statuses: Option<Vec<String>>Ticket statuses for Smart Transfer tickets. Optional
network_id: Option<String>NetworkId that is used in the ticket . Optional
created_by_me: Option<bool>Filter created tickets by created by self or by others. Optional
expires_after: Option<String>Lower bound of search range. Optional
expires_before: Option<String>Upper bound of search range. Optional
type: Option<String>Type of transfer. ASYNC executes transfers as they are funded, ATOMIC executes all terms (legs) as one atomic transfer
external_ref_id: Option<String>External ref. ID that workspace can use to identify ticket outside of Fireblocks system.
after: Option<String>ID of the record after which to fetch $limit records
limit: Option<f64>Number of records to fetch. By default, it is 100
Implementations§
Source§impl SearchTicketsParams
impl SearchTicketsParams
Sourcepub fn builder() -> SearchTicketsParamsBuilder
pub fn builder() -> SearchTicketsParamsBuilder
Create an instance of SearchTicketsParams using the builder syntax
Trait Implementations§
Source§impl Clone for SearchTicketsParams
impl Clone for SearchTicketsParams
Source§fn clone(&self) -> SearchTicketsParams
fn clone(&self) -> SearchTicketsParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more