Show / Hide Table of Contents

Class AppCatalogListing

Listing details.

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

Properties

ContactUrl

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

Listing's contact URL.

Description

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

Description of the listing.

DisplayName

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

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

ListingId

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

The OCID of the listing.

PublisherLogoUrl

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

Publisher's logo URL.

PublisherName

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

Name of the publisher who published this listing.

Summary

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

Summary of the listing.

TimePublished

Declaration
[JsonProperty(PropertyName = "timePublished")]
public DateTime? TimePublished { get; set; }
Property Value
Type Description
DateTime?

Date and time the listing was published, in RFC3339 format. Example: 2018-03-20T12:32:53.532Z

In this article
Back to top