pub struct AccountStatusItemLevelIssue {
pub attribute_name: Option<String>,
pub code: Option<String>,
pub description: Option<String>,
pub detail: Option<String>,
pub documentation: Option<String>,
pub num_items: Option<i64>,
pub resolution: Option<String>,
pub servability: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§attribute_name: Option<String>The attribute’s name, if the issue is caused by a single attribute.
code: Option<String>The error code of the issue.
description: Option<String>A short issue description in English.
detail: Option<String>A detailed issue description in English.
documentation: Option<String>The URL of a web page to help with resolving this issue.
num_items: Option<i64>Number of items with this issue.
resolution: Option<String>Whether the issue can be resolved by the merchant.
servability: Option<String>How this issue affects serving of the offer.
Trait Implementations§
Source§impl Clone for AccountStatusItemLevelIssue
impl Clone for AccountStatusItemLevelIssue
Source§fn clone(&self) -> AccountStatusItemLevelIssue
fn clone(&self) -> AccountStatusItemLevelIssue
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 Debug for AccountStatusItemLevelIssue
impl Debug for AccountStatusItemLevelIssue
Source§impl Default for AccountStatusItemLevelIssue
impl Default for AccountStatusItemLevelIssue
Source§fn default() -> AccountStatusItemLevelIssue
fn default() -> AccountStatusItemLevelIssue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountStatusItemLevelIssue
impl<'de> Deserialize<'de> for AccountStatusItemLevelIssue
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
impl Part for AccountStatusItemLevelIssue
Auto Trait Implementations§
impl Freeze for AccountStatusItemLevelIssue
impl RefUnwindSafe for AccountStatusItemLevelIssue
impl Send for AccountStatusItemLevelIssue
impl Sync for AccountStatusItemLevelIssue
impl Unpin for AccountStatusItemLevelIssue
impl UnwindSafe for AccountStatusItemLevelIssue
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