pub struct GetWebhooksParams {
pub order: Option<String>,
pub page_cursor: Option<String>,
pub page_size: Option<f64>,
}
Expand description
struct for passing parameters to the method [get_webhooks
]
Fields§
§order: Option<String>
ASC / DESC ordering (default DESC)
page_cursor: Option<String>
Cursor of the required page
page_size: Option<f64>
Maximum number of items in the page
Implementations§
Source§impl GetWebhooksParams
impl GetWebhooksParams
Sourcepub fn builder() -> GetWebhooksParamsBuilder
pub fn builder() -> GetWebhooksParamsBuilder
Create an instance of GetWebhooksParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetWebhooksParams
impl Clone for GetWebhooksParams
Source§fn clone(&self) -> GetWebhooksParams
fn clone(&self) -> GetWebhooksParams
Returns a copy 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 GetWebhooksParams
impl RefUnwindSafe for GetWebhooksParams
impl Send for GetWebhooksParams
impl Sync for GetWebhooksParams
impl Unpin for GetWebhooksParams
impl UnwindSafe for GetWebhooksParams
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