pub struct BillingWebhookResponse {
pub events: Vec<BillingEvent>,
pub provider: String,
}Expand description
BillingWebhookResponse
JSON schema
{
"type": "object",
"required": [
"events",
"provider"
],
"properties": {
"events": {
"type": "array",
"items": {
"$ref": "#/components/schemas/BillingEvent"
}
},
"provider": {
"type": "string"
}
}
}Fields§
§events: Vec<BillingEvent>§provider: StringTrait Implementations§
Source§impl Clone for BillingWebhookResponse
impl Clone for BillingWebhookResponse
Source§fn clone(&self) -> BillingWebhookResponse
fn clone(&self) -> BillingWebhookResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BillingWebhookResponse
impl Debug for BillingWebhookResponse
Source§impl<'de> Deserialize<'de> for BillingWebhookResponse
impl<'de> Deserialize<'de> for BillingWebhookResponse
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 BillingWebhookResponse
impl RefUnwindSafe for BillingWebhookResponse
impl Send for BillingWebhookResponse
impl Sync for BillingWebhookResponse
impl Unpin for BillingWebhookResponse
impl UnsafeUnpin for BillingWebhookResponse
impl UnwindSafe for BillingWebhookResponse
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