Show / Hide Table of Contents

Class AdminMarket

The model for the admin market details.

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

Properties

BillToCountries

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

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

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

In this article
Back to top