Struct stripe::UpdatePrice
source · [−]pub struct UpdatePrice<'a> {
pub active: Option<bool>,
pub expand: &'a [&'a str],
pub lookup_key: Option<&'a str>,
pub metadata: Option<Metadata>,
pub nickname: Option<&'a str>,
pub tax_behavior: Option<PriceTaxBehavior>,
pub transfer_lookup_key: Option<bool>,
}Expand description
The parameters for Price::update.
Fields
active: Option<bool>Whether the price can be used for new purchases.
Defaults to true.
expand: &'a [&'a str]Specifies which fields in the response should be expanded.
lookup_key: Option<&'a str>A lookup key used to retrieve prices dynamically from a static string.
This may be up to 200 characters.
metadata: Option<Metadata>Set of key-value pairs that you can attach to an object.
This can be useful for storing additional information about the object in a structured format.
Individual keys can be unset by posting an empty value to them.
All keys can be unset by posting an empty value to metadata.
nickname: Option<&'a str>A brief description of the price, hidden from customers.
tax_behavior: Option<PriceTaxBehavior>Specifies whether the price is considered inclusive of taxes or exclusive of taxes.
One of inclusive, exclusive, or unspecified.
Once specified as either inclusive or exclusive, it cannot be changed.
transfer_lookup_key: Option<bool>If set to true, will atomically remove the lookup key from the existing price, and assign it to this price.
Implementations
sourceimpl<'a> UpdatePrice<'a>
impl<'a> UpdatePrice<'a>
Trait Implementations
sourceimpl<'a> Clone for UpdatePrice<'a>
impl<'a> Clone for UpdatePrice<'a>
sourcefn clone(&self) -> UpdatePrice<'a>
fn clone(&self) -> UpdatePrice<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'a> Debug for UpdatePrice<'a>
impl<'a> Debug for UpdatePrice<'a>
sourceimpl<'a> Default for UpdatePrice<'a>
impl<'a> Default for UpdatePrice<'a>
sourcefn default() -> UpdatePrice<'a>
fn default() -> UpdatePrice<'a>
Returns the “default value” for a type. Read more
sourceimpl<'a> Serialize for UpdatePrice<'a>
impl<'a> Serialize for UpdatePrice<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for UpdatePrice<'a>
impl<'a> Send for UpdatePrice<'a>
impl<'a> Sync for UpdatePrice<'a>
impl<'a> Unpin for UpdatePrice<'a>
impl<'a> UnwindSafe for UpdatePrice<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more