pub struct CustomerCostPriceBlockPriceGroup {
pub grouping_key: String,
pub grouping_value: Option<String>,
pub secondary_grouping_key: Option<String>,
pub secondary_grouping_value: Option<String>,
pub total: String,
}Expand description
A price cost for a given set of grouping keys.
Fields§
§grouping_key: StringThe key breaking down a single price’s costs.
grouping_value: Option<String>An optional value for the key.
secondary_grouping_key: Option<String>The second dimension for the matrix price, if applicable.
secondary_grouping_value: Option<String>An optional value for the secondary_grouping_key, if applicable.
total: StringTotal costs for this group for the timeframe, excluding any minimums and discounts.
Trait Implementations§
Source§impl Clone for CustomerCostPriceBlockPriceGroup
impl Clone for CustomerCostPriceBlockPriceGroup
Source§fn clone(&self) -> CustomerCostPriceBlockPriceGroup
fn clone(&self) -> CustomerCostPriceBlockPriceGroup
Returns a duplicate 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<'de> Deserialize<'de> for CustomerCostPriceBlockPriceGroup
impl<'de> Deserialize<'de> for CustomerCostPriceBlockPriceGroup
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 PartialEq for CustomerCostPriceBlockPriceGroup
impl PartialEq for CustomerCostPriceBlockPriceGroup
Source§fn eq(&self, other: &CustomerCostPriceBlockPriceGroup) -> bool
fn eq(&self, other: &CustomerCostPriceBlockPriceGroup) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CustomerCostPriceBlockPriceGroup
impl StructuralPartialEq for CustomerCostPriceBlockPriceGroup
Auto Trait Implementations§
impl Freeze for CustomerCostPriceBlockPriceGroup
impl RefUnwindSafe for CustomerCostPriceBlockPriceGroup
impl Send for CustomerCostPriceBlockPriceGroup
impl Sync for CustomerCostPriceBlockPriceGroup
impl Unpin for CustomerCostPriceBlockPriceGroup
impl UnwindSafe for CustomerCostPriceBlockPriceGroup
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.