Show / Hide Table of Contents

Class ProductSummary

The model for the product metadata.

Inheritance
object
ProductSummary
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 ProductSummary

Properties

AdditionalFilters

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

Additional filter properties for product

Code

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

The code for the product.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(StringEnumConverter))]
public Product.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
Product.LifecycleStateEnum?

The current state for the product.

Remarks

Required

Name

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

The name for the product.

Remarks

Required

ProductGroup

Declaration
[JsonProperty(PropertyName = "productGroup")]
public string ProductGroup { get; set; }
Property Value
Type Description
string

The product group for the product.

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the product was created, in the format defined by RFC3339.
Example: 2022-09-15T21:10:29.600Z

Remarks

Required

TimeUpdated

Declaration
[Required(ErrorMessage = "TimeUpdated is required.")]
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The date and time the product was updated, in the format defined by RFC3339.
Example: 2022-09-15T21:10:29.600Z

Remarks

Required

In this article
Back to top