Show / Hide Table of Contents

Class BulkUploadFailedRecordInfo

Error information for a valid license record that could not be uploaded.

Inheritance
object
BulkUploadFailedRecordInfo
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 BulkUploadFailedRecordInfo

Properties

Error

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

Failed license record error information.

Remarks

Required

ProductName

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

Product name of the failed row.

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