1// Copyright (c) 2016, 2018, 2020, Oracle and/or its affiliates.  All rights reserved.
2// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
3// Code generated. DO NOT EDIT.
4
5// Core Services API
6//
7// API covering the Networking (https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/overview.htm),
8// Compute (https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm), and
9// Block Volume (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/overview.htm) services. Use this API
10// to manage resources such as virtual cloud networks (VCNs), compute instances, and
11// block storage volumes.
12//
13
14package core
15
16import (
17	"github.com/oracle/oci-go-sdk/common"
18)
19
20// AppCatalogListing Listing details.
21type AppCatalogListing struct {
22
23	// Listing's contact URL.
24	ContactUrl *string `mandatory:"false" json:"contactUrl"`
25
26	// Description of the listing.
27	Description *string `mandatory:"false" json:"description"`
28
29	// The OCID of the listing.
30	ListingId *string `mandatory:"false" json:"listingId"`
31
32	// Name of the listing.
33	DisplayName *string `mandatory:"false" json:"displayName"`
34
35	// Date and time the listing was published, in RFC3339 (https://tools.ietf.org/html/rfc3339) format.
36	// Example: `2018-03-20T12:32:53.532Z`
37	TimePublished *common.SDKTime `mandatory:"false" json:"timePublished"`
38
39	// Publisher's logo URL.
40	PublisherLogoUrl *string `mandatory:"false" json:"publisherLogoUrl"`
41
42	// Name of the publisher who published this listing.
43	PublisherName *string `mandatory:"false" json:"publisherName"`
44
45	// Summary of the listing.
46	Summary *string `mandatory:"false" json:"summary"`
47}
48
49func (m AppCatalogListing) String() string {
50	return common.PointerString(m)
51}
52