Show / Hide Table of Contents

Class PublisherSummary

The model for a publisher.

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

Properties

CompartmentId

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

The root compartment of the Publisher.

Remarks

Required

ContactEmail

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

The public email address of the publisher for customers.

Remarks

Required

ContactPhone

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

The phone number of the publisher in E.164 format.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

Description

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

A description of the publisher.

DisplayName

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

The name of the publisher.

Remarks

Required

FacebookUrl

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

Publisher's Facebook URL

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

HqAddress

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

The address of the publisher's headquarters.

Id

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

Unique OCID identifier for the publisher.

Remarks

Required

LegacyId

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

Unique legacy service identifier for the publisher.

LinkedinUrl

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

Publisher's LinkedIn URL

Logo

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

PublisherType

Declaration
[Required(ErrorMessage = "PublisherType is required.")]
[JsonProperty(PropertyName = "publisherType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PublisherSummary.PublisherTypeEnum? PublisherType { get; set; }
Property Value
Type Description
PublisherSummary.PublisherTypeEnum?

publisher type.

Remarks

Required

RegistryNamespace

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

The namespace for the publisher registry to persist artifacts.

Remarks

Required

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeCreated

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

The time the publisher was created. An RFC3339 formatted datetime string.

Remarks

Required

TimeUpdated

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

The time the publisher was updated. An RFC3339 formatted datetime string.

Remarks

Required

TwitterUrl

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

Publisher's Twitter URL

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