Show / Hide Table of Contents

Class BulkUploadValidationErrorInfo

Detailed error information corresponding to each column for a particular supported license record that could not be uploaded.

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

Properties

ProductName

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

Product name of invalid row.

Remarks

Required

RowError

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

Error information corresponding to each column.

Remarks

Required

RowNumber

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

Refers to the license record number as provided in the bulk upload file.

Remarks

Required

In this article
Back to top