pub struct GetNotificationAttemptsParams {
pub webhook_id: String,
pub notification_id: String,
pub page_cursor: Option<String>,
pub page_size: Option<f64>,
}Expand description
struct for passing parameters to the method
WebhooksV2Api::get_notification_attempts
Fields§
§webhook_id: StringThe ID of the webhook to fetch
notification_id: StringThe ID of the notification to fetch
page_cursor: Option<String>Cursor of the required page
page_size: Option<f64>Maximum number of items in the page
Implementations§
Source§impl GetNotificationAttemptsParams
impl GetNotificationAttemptsParams
Sourcepub fn builder() -> GetNotificationAttemptsParamsBuilder
pub fn builder() -> GetNotificationAttemptsParamsBuilder
Create an instance of GetNotificationAttemptsParams using the builder syntax
Trait Implementations§
Source§impl Clone for GetNotificationAttemptsParams
impl Clone for GetNotificationAttemptsParams
Source§fn clone(&self) -> GetNotificationAttemptsParams
fn clone(&self) -> GetNotificationAttemptsParams
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 GetNotificationAttemptsParams
impl RefUnwindSafe for GetNotificationAttemptsParams
impl Send for GetNotificationAttemptsParams
impl Sync for GetNotificationAttemptsParams
impl Unpin for GetNotificationAttemptsParams
impl UnwindSafe for GetNotificationAttemptsParams
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