pub struct CheckoutEvent {
pub checkout_session_id: String,
pub tenant_id: String,
pub tenant_name: String,
pub event_type: ProvisioningEventType,
pub status: String,
pub message: Option<String>,
pub app_url: Option<String>,
pub fly_app_name: Option<String>,
}Fields§
§checkout_session_id: String§tenant_id: String§tenant_name: String§event_type: ProvisioningEventType§status: String§message: Option<String>§app_url: Option<String>§fly_app_name: Option<String>Trait Implementations§
Source§impl Clone for CheckoutEvent
impl Clone for CheckoutEvent
Source§fn clone(&self) -> CheckoutEvent
fn clone(&self) -> CheckoutEvent
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 moreSource§impl Debug for CheckoutEvent
impl Debug for CheckoutEvent
Source§impl<'de> Deserialize<'de> for CheckoutEvent
impl<'de> Deserialize<'de> for CheckoutEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CheckoutEvent
impl RefUnwindSafe for CheckoutEvent
impl Send for CheckoutEvent
impl Sync for CheckoutEvent
impl Unpin for CheckoutEvent
impl UnwindSafe for CheckoutEvent
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