pub struct ProductStatus {
pub creation_date: Option<String>,
pub data_quality_issues: Option<Vec<ProductStatusDataQualityIssue>>,
pub destination_statuses: Option<Vec<ProductStatusDestinationStatus>>,
pub google_expiration_date: Option<String>,
pub item_level_issues: Option<Vec<ProductStatusItemLevelIssue>>,
pub kind: Option<String>,
pub last_update_date: Option<String>,
pub link: Option<String>,
pub product: Option<Product>,
pub product_id: Option<String>,
pub title: Option<String>,
}
Expand description
The status of a product, i.e., information about a product computed asynchronously.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- get productstatuses (response)
Fields§
§creation_date: Option<String>
Date on which the item has been created, in ISO 8601 format.
data_quality_issues: Option<Vec<ProductStatusDataQualityIssue>>
DEPRECATED - never populated
destination_statuses: Option<Vec<ProductStatusDestinationStatus>>
The intended destinations for the product.
google_expiration_date: Option<String>
Date on which the item expires in Google Shopping, in ISO 8601 format.
item_level_issues: Option<Vec<ProductStatusItemLevelIssue>>
A list of all issues associated with the product.
kind: Option<String>
Identifies what kind of resource this is. Value: the fixed string “content#productStatus
”
last_update_date: Option<String>
Date on which the item has been last updated, in ISO 8601 format.
link: Option<String>
The link to the product.
product: Option<Product>
Product data after applying all the join inputs.
product_id: Option<String>
The ID of the product for which status is reported.
title: Option<String>
The title of the product.
Trait Implementations§
Source§impl Clone for ProductStatus
impl Clone for ProductStatus
Source§fn clone(&self) -> ProductStatus
fn clone(&self) -> ProductStatus
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ProductStatus
impl Debug for ProductStatus
Source§impl Default for ProductStatus
impl Default for ProductStatus
Source§fn default() -> ProductStatus
fn default() -> ProductStatus
Source§impl<'de> Deserialize<'de> for ProductStatus
impl<'de> Deserialize<'de> for ProductStatus
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 Serialize for ProductStatus
impl Serialize for ProductStatus
impl ResponseResult for ProductStatus
Auto Trait Implementations§
impl Freeze for ProductStatus
impl RefUnwindSafe for ProductStatus
impl Send for ProductStatus
impl Sync for ProductStatus
impl Unpin for ProductStatus
impl UnwindSafe for ProductStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more