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// AppCatalogListingSummary A summary of a listing.
20type AppCatalogListingSummary struct {
21
22	// the region free ocid of the listing resource.
23	ListingId *string `mandatory:"false" json:"listingId"`
24
25	// The display name of the listing.
26	DisplayName *string `mandatory:"false" json:"displayName"`
27
28	// The short summary for the listing.
29	Summary *string `mandatory:"false" json:"summary"`
30
31	// The name of the publisher who published this listing.
32	PublisherName *string `mandatory:"false" json:"publisherName"`
33}
34
35func (m AppCatalogListingSummary) String() string {
36	return common.PointerString(m)
37}
38