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.MarketplacepublisherService.Models
Assembly: OCI.DotNetSDK.Marketplacepublisher.dll
Syntax
public class PublisherSummary

Properties

BusinessPhoneNumber

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

The business phone number of the publisher.

City

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

City in which partner company resides

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

Country

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

Country in which partner company resides

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

Email

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

Email address of the publisher.

EmployeeCount

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

Count of employees in publisher's company

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

OpnNumber

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

OPN membership number of the publisher

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

SolutionDescription

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

A description of the publisher solutions.

State

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

State in which partner company resides

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