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