pub struct GoogleCloudRetailV2RemoveLocalInventoriesRequest {
pub allow_missing: Option<bool>,
pub place_ids: Option<Vec<String>>,
pub remove_time: Option<DateTime<Utc>>,
}Expand description
Request message for ProductService.RemoveLocalInventories method.
§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).
Fields§
§allow_missing: Option<bool>If set to true, and the Product is not found, the local inventory removal request will still be processed and retained for at most 1 day and processed once the Product is created. If set to false, a NOT_FOUND error is returned if the Product is not found.
place_ids: Option<Vec<String>>Required. A list of place IDs to have their inventory deleted. At most 3000 place IDs are allowed per request.
remove_time: Option<DateTime<Utc>>The time when the inventory deletions are issued. Used to prevent out-of-order updates and deletions on local inventory fields. If not provided, the internal system time will be used.
Trait Implementations§
Source§impl Clone for GoogleCloudRetailV2RemoveLocalInventoriesRequest
impl Clone for GoogleCloudRetailV2RemoveLocalInventoriesRequest
Source§fn clone(&self) -> GoogleCloudRetailV2RemoveLocalInventoriesRequest
fn clone(&self) -> GoogleCloudRetailV2RemoveLocalInventoriesRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more