Show / Hide Table of Contents

Class ListingProduct

Products associated with listing.

Inheritance
object
ListingProduct
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MarketplacepublisherService.Models
Assembly: OCI.DotNetSDK.Marketplacepublisher.dll
Syntax
public class ListingProduct

Properties

AdditionalFilters

Declaration
[JsonProperty(PropertyName = "additionalFilters")]
public List<ListingProductAdditionalFilter> AdditionalFilters { get; set; }
Property Value
Type Description
List<ListingProductAdditionalFilter>

Custom filter for the product

Categories

Declaration
[Required(ErrorMessage = "Categories is required.")]
[JsonProperty(PropertyName = "categories")]
public List<string> Categories { get; set; }
Property Value
Type Description
List<string>

List of category codes within a Product which are applicable to the listing revision.

Remarks

Required

Code

Declaration
[Required(ErrorMessage = "Code is required.")]
[JsonProperty(PropertyName = "code")]
public string Code { get; set; }
Property Value
Type Description
string

Product Code

Remarks

Required

In this article
Back to top