Show / Hide Table of Contents

Class Market

The model for the market details.

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

Properties

BillToCountries

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

bill to countries for the market.

Remarks

Required

CategoryCode

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

The category code of the market.

Remarks

Required

Code

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

The code of the market.

Remarks

Required

LifecycleState

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

The current state for the market.

Remarks

Required

Name

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

The name of the market.

Remarks

Required

RealmCode

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

The realm code of the market.

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 market 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 market was updated, in the format defined by RFC3339.
Example: 2022-09-15T21:10:29.600Z

Remarks

Required

In this article
Back to top