Show / Hide Table of Contents

Class ExternalPublicationValidationSummary

The external publication validation summary contains the validation summary information and the definition of the external object.

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

Properties

ErrorMessageCount

Declaration
[JsonProperty(PropertyName = "errorMessageCount")]
public int? ErrorMessageCount { get; set; }
Property Value
Type Description
int?

Total number of validation error messages.

InfoMessageCount

Declaration
[JsonProperty(PropertyName = "infoMessageCount")]
public int? InfoMessageCount { get; set; }
Property Value
Type Description
int?

Total number of validation information messages.

Key

Declaration
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

Objects use a 36 character key as unique ID. It is system generated and cannot be modified.

TotalMessageCount

Declaration
[JsonProperty(PropertyName = "totalMessageCount")]
public int? TotalMessageCount { get; set; }
Property Value
Type Description
int?

Total number of validation messages.

ValidationMessages

Declaration
[JsonProperty(PropertyName = "validationMessages")]
public Dictionary<string, List<ValidationMessage>> ValidationMessages { get; set; }
Property Value
Type Description
Dictionary<string, List<ValidationMessage>>

Detailed information of the data flow object validation.

WarnMessageCount

Declaration
[JsonProperty(PropertyName = "warnMessageCount")]
public int? WarnMessageCount { get; set; }
Property Value
Type Description
int?

Total number of validation warning messages.

In this article
Back to top