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