pub struct CreateSubscriptionTransferData {
pub amount_percent: Option<f64>,
pub destination: String,
}Fields§
§amount_percent: Option<f64>A non-negative decimal between 0 and 100, with at most two decimal places.
This represents the percentage of the subscription invoice subtotal that will be transferred to the destination account. By default, the entire amount is transferred to the destination.
destination: StringID of an existing, connected Stripe account.
Trait Implementations§
source§impl Clone for CreateSubscriptionTransferData
impl Clone for CreateSubscriptionTransferData
source§fn clone(&self) -> CreateSubscriptionTransferData
fn clone(&self) -> CreateSubscriptionTransferData
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 Default for CreateSubscriptionTransferData
impl Default for CreateSubscriptionTransferData
source§fn default() -> CreateSubscriptionTransferData
fn default() -> CreateSubscriptionTransferData
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CreateSubscriptionTransferData
impl<'de> Deserialize<'de> for CreateSubscriptionTransferData
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