pub struct SmartTransferTicket {Show 20 fields
pub id: String,
pub type: Type,
pub direction: Option<Direction>,
pub status: Status,
pub terms: Option<Vec<SmartTransferTicketTerm>>,
pub expires_in: Option<f64>,
pub expires_at: Option<String>,
pub submitted_at: Option<String>,
pub expired_at: Option<String>,
pub canceled_at: Option<String>,
pub fulfilled_at: Option<String>,
pub external_ref_id: Option<String>,
pub note: Option<String>,
pub created_by_network_id: String,
pub created_by_network_id_name: String,
pub canceled_by_network_id_name: Option<String>,
pub created_at: String,
pub updated_at: String,
pub canceled_by_me: Option<bool>,
pub created_by_me: Option<bool>,
}Expand description
SmartTransferTicket : Data object with result data
Fields§
§id: StringUnique id of Smart Transfer ticket
type: TypeKind of Smart Transfer. Can be either ASYNC or ATOMIC
direction: Option<Direction>Direction of Smart Transfer.
status: StatusCurrent status of Smart Transfer ticket
terms: Option<Vec<SmartTransferTicketTerm>>Ticket terms (legs)
expires_in: Option<f64>Number of hours for expiration.This data is valid only it ticket not in DRAFT state and it will be used to calculate expiresAt value
expires_at: Option<String>Date and time at which the ticket will expire if no funding is performed.
submitted_at: Option<String>Date and time when ticket is submitted.
expired_at: Option<String>Date and time when ticket is expired.
canceled_at: Option<String>Date and time when ticket is canceled.
fulfilled_at: Option<String>Date and time when ticket is fulfilled.
external_ref_id: Option<String>External Ref ID for Smart Transfer ticket.
note: Option<String>Note
created_by_network_id: StringID of network profile that created ticket
created_by_network_id_name: StringName of network profile that created ticket
canceled_by_network_id_name: Option<String>Name of network profile that canceled ticket
created_at: StringDate and time at which the ticket is created.
updated_at: StringDate and time of last ticket update.
canceled_by_me: Option<bool>§created_by_me: Option<bool>Implementations§
Trait Implementations§
Source§impl Clone for SmartTransferTicket
impl Clone for SmartTransferTicket
Source§fn clone(&self) -> SmartTransferTicket
fn clone(&self) -> SmartTransferTicket
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more