Show / Hide Table of Contents

Class ListingMeter

A listing meter information attached by marketplace admin.

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

Properties

ExtendedMetadata

Declaration
[Required(ErrorMessage = "ExtendedMetadata is required.")]
[JsonProperty(PropertyName = "extendedMetadata")]
public Dictionary<string, string> ExtendedMetadata { get; set; }
Property Value
Type Description
Dictionary<string, string>

Additional metadata key/value pairs for the listing meter.
For Example: {"pausedOnInstanceStop": "True","coreSuffixMeter": "_VMWARE", "minimumBillingPeriodInHours": "755", "weight": "1.0" }

Remarks

Required

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The meter name, ex - MP_BOBO_AP.

Remarks

Required

RateAllocation

Declaration
[Required(ErrorMessage = "RateAllocation is required.")]
[JsonProperty(PropertyName = "rateAllocation")]
public float? RateAllocation { get; set; }
Property Value
Type Description
float?

rate allocation, these are calculated based on rate information at parent part/sku and listing revision.

Remarks

Required

In this article
Back to top