Show / Hide Table of Contents

Class Publisher

The model for a publisher.

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

Properties

ContactEmail

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

The email address of the publisher.

ContactPhone

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

The phone number of the publisher.

Description

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

A description of the publisher.

HqAddress

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

The address of the publisher's headquarters.

Id

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

Unique identifier for the publisher.

Links

Declaration
[JsonProperty(PropertyName = "links")]
public List<Link> Links { get; set; }
Property Value
Type Description
List<Link>

Reference links.

Logo

Declaration
[JsonProperty(PropertyName = "logo")]
public UploadData Logo { get; set; }
Property Value
Type Description
UploadData

Name

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

The name of the publisher.

WebsiteUrl

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

The publisher's website.

YearFounded

Declaration
[JsonProperty(PropertyName = "yearFounded")]
public long? YearFounded { get; set; }
Property Value
Type Description
long?

The year the publisher's company or organization was founded.

In this article
Back to top