Show / Hide Table of Contents

Class JavaDownloadCountAggregationCollection

Collection of download count aggregations.

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

Properties

AggregationType

Declaration
[Required(ErrorMessage = "AggregationType is required.")]
[JsonProperty(PropertyName = "aggregationType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JavaDownloadCountAggregationType? AggregationType { get; set; }
Property Value
Type Description
JavaDownloadCountAggregationType?

Aggregation type

Remarks

Required

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<JavaDownloadCountAggregation> Items { get; set; }
Property Value
Type Description
List<JavaDownloadCountAggregation>

A list of download count aggregations.

Remarks

Required

In this article
Back to top