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 [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
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for SearchTicketsParams
impl RefUnwindSafe for SearchTicketsParams
impl Send for SearchTicketsParams
impl Sync for SearchTicketsParams
impl Unpin for SearchTicketsParams
impl UnwindSafe for SearchTicketsParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more