Struct stripe::model::WebhookEndpoint
source · pub struct WebhookEndpoint {
pub api_version: Option<String>,
pub application: Option<String>,
pub created: i64,
pub description: Option<String>,
pub enabled_events: Vec<String>,
pub id: String,
pub livemode: bool,
pub metadata: Value,
pub object: String,
pub secret: Option<String>,
pub status: String,
pub url: String,
}Fields§
§api_version: Option<String>§application: Option<String>§created: i64§description: Option<String>§enabled_events: Vec<String>§id: String§livemode: bool§metadata: Value§object: String§secret: Option<String>§status: String§url: StringTrait Implementations§
source§impl Clone for WebhookEndpoint
impl Clone for WebhookEndpoint
source§fn clone(&self) -> WebhookEndpoint
fn clone(&self) -> WebhookEndpoint
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 moresource§impl Debug for WebhookEndpoint
impl Debug for WebhookEndpoint
source§impl<'de> Deserialize<'de> for WebhookEndpoint
impl<'de> Deserialize<'de> for WebhookEndpoint
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
source§impl Display for WebhookEndpoint
impl Display for WebhookEndpoint
Auto Trait Implementations§
impl RefUnwindSafe for WebhookEndpoint
impl Send for WebhookEndpoint
impl Sync for WebhookEndpoint
impl Unpin for WebhookEndpoint
impl UnwindSafe for WebhookEndpoint
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