Show / Hide Table of Contents

Class FleetErrorAggregation

Aggregation of FleetErrors

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

Properties

Count

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

Number of FleetErrors encountered for the specific reason.

Remarks

Required

Reason

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

Enum that uniquely identifies the fleet error.

Remarks

Required

In this article
Back to top