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// AppCatalogSubscriptionSummary a subscription summary for a listing resource version.
21type AppCatalogSubscriptionSummary struct {
22
23	// Name of the publisher who published this listing.
24	PublisherName *string `mandatory:"false" json:"publisherName"`
25
26	// The ocid of the listing resource.
27	ListingId *string `mandatory:"false" json:"listingId"`
28
29	// Listing resource version.
30	ListingResourceVersion *string `mandatory:"false" json:"listingResourceVersion"`
31
32	// Listing resource id.
33	ListingResourceId *string `mandatory:"false" json:"listingResourceId"`
34
35	// The display name of the listing.
36	DisplayName *string `mandatory:"false" json:"displayName"`
37
38	// The short summary to the listing.
39	Summary *string `mandatory:"false" json:"summary"`
40
41	// The compartmentID of the subscription.
42	CompartmentId *string `mandatory:"false" json:"compartmentId"`
43
44	// Date and time at which the subscription was created, in RFC3339 (https://tools.ietf.org/html/rfc3339) format.
45	// Example: `2018-03-20T12:32:53.532Z`
46	TimeCreated *common.SDKTime `mandatory:"false" json:"timeCreated"`
47}
48
49func (m AppCatalogSubscriptionSummary) String() string {
50	return common.PointerString(m)
51}
52