pub struct DeliveryLogAttributes {
    pub request: Request,
    pub response: Option<Response>,
    pub delivery_status: WebhookDeliveryStatusEnum,
    pub created_at: String,
}Fields§
§request: RequestInformation about the request that was sent to the webhook URL.
response: Option<Response>Information about the response that was received from the webhook URL.
delivery_status: WebhookDeliveryStatusEnumThe success or failure status of this delivery attempt.
created_at: StringThe date-time at which this log entry was created.
Trait Implementations§
Source§impl Debug for DeliveryLogAttributes
 
impl Debug for DeliveryLogAttributes
Source§impl<'de> Deserialize<'de> for DeliveryLogAttributes
 
impl<'de> Deserialize<'de> for DeliveryLogAttributes
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 DeliveryLogAttributes
impl RefUnwindSafe for DeliveryLogAttributes
impl Send for DeliveryLogAttributes
impl Sync for DeliveryLogAttributes
impl Unpin for DeliveryLogAttributes
impl UnwindSafe for DeliveryLogAttributes
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