Show / Hide Table of Contents

Class PurgeProductsRequest

Request message for the PurgeProducts method.

Inheritance
System.Object
PurgeProductsRequest
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Vision.v1.Data
Assembly: Google.Apis.Vision.v1.dll
Syntax
public class PurgeProductsRequest : IDirectResponseSchema

Properties

DeleteOrphanProducts

If delete_orphan_products is true, all Products that are not in any ProductSet will be deleted.

Declaration
[JsonProperty("deleteOrphanProducts")]
public virtual bool? DeleteOrphanProducts { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Force

The default value is false. Override this value to true to actually perform the purge.

Declaration
[JsonProperty("force")]
public virtual bool? Force { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ProductSetPurgeConfig

Specify which ProductSet contains the Products to be deleted.

Declaration
[JsonProperty("productSetPurgeConfig")]
public virtual ProductSetPurgeConfig ProductSetPurgeConfig { get; set; }
Property Value
Type Description
ProductSetPurgeConfig

Implements

IDirectResponseSchema
In This Article
Back to top