pub struct AmazonPrograms {
pub programs: Vec<String>,
}Expand description
AmazonPrograms : Contains the list of programs that Amazon associates with an item. Possible programs are: - Subscribe and Save: Offers recurring, scheduled deliveries to Amazon customers and Amazon Business customers for their frequently ordered products. - FBM Ship+: Unlocks expedited shipping without the extra cost. Helps you to provide accurate and fast delivery dates to Amazon customers. You also receive protection from late deliveries, a discount on expedited shipping rates, and cash back when you ship.
Fields§
§programs: Vec<String>A list of the programs that Amazon associates with the order item. Possible values: SUBSCRIBE_AND_SAVE, FBM_SHIP_PLUS
Implementations§
Source§impl AmazonPrograms
impl AmazonPrograms
Sourcepub fn new(programs: Vec<String>) -> AmazonPrograms
pub fn new(programs: Vec<String>) -> AmazonPrograms
Contains the list of programs that Amazon associates with an item. Possible programs are: - Subscribe and Save: Offers recurring, scheduled deliveries to Amazon customers and Amazon Business customers for their frequently ordered products. - FBM Ship+: Unlocks expedited shipping without the extra cost. Helps you to provide accurate and fast delivery dates to Amazon customers. You also receive protection from late deliveries, a discount on expedited shipping rates, and cash back when you ship.
Trait Implementations§
Source§impl Clone for AmazonPrograms
impl Clone for AmazonPrograms
Source§fn clone(&self) -> AmazonPrograms
fn clone(&self) -> AmazonPrograms
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for AmazonPrograms
impl Debug for AmazonPrograms
Source§impl Default for AmazonPrograms
impl Default for AmazonPrograms
Source§fn default() -> AmazonPrograms
fn default() -> AmazonPrograms
Source§impl<'de> Deserialize<'de> for AmazonPrograms
impl<'de> Deserialize<'de> for AmazonPrograms
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>,
Source§impl PartialEq for AmazonPrograms
impl PartialEq for AmazonPrograms
Source§fn eq(&self, other: &AmazonPrograms) -> bool
fn eq(&self, other: &AmazonPrograms) -> bool
self and other values to be equal, and is used by ==.