Class PluginErrorAggregation
Aggregation of PluginErrors
Inherited Members
Namespace: Oci.JmsService.Models
Assembly: OCI.DotNetSDK.Jms.dll
Syntax
public class PluginErrorAggregation
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 PluginErrorReason? Reason { get; set; }
Property Value
Type | Description |
---|---|
PluginErrorReason? | Enum that uniquely identifies the plugin error. |
Remarks
Required