pub struct SubmitTicketParams {
pub ticket_id: String,
pub smart_transfer_submit_ticket: SmartTransferSubmitTicket,
pub idempotency_key: Option<String>,
}
Expand description
struct for passing parameters to the method [submit_ticket
]
Fields§
§ticket_id: String
§smart_transfer_submit_ticket: SmartTransferSubmitTicket
§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 SubmitTicketParams
impl SubmitTicketParams
Sourcepub fn builder() -> SubmitTicketParamsBuilder
pub fn builder() -> SubmitTicketParamsBuilder
Create an instance of SubmitTicketParams
using the builder syntax
Trait Implementations§
Source§impl Clone for SubmitTicketParams
impl Clone for SubmitTicketParams
Source§fn clone(&self) -> SubmitTicketParams
fn clone(&self) -> SubmitTicketParams
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 SubmitTicketParams
impl RefUnwindSafe for SubmitTicketParams
impl Send for SubmitTicketParams
impl Sync for SubmitTicketParams
impl Unpin for SubmitTicketParams
impl UnwindSafe for SubmitTicketParams
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