Show / Hide Table of Contents

Class DataVerificationObjectStatusCollection

Results of an Object Status listing.

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

Properties

Items

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

Items in collection.

Remarks

Required

TotalItems

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

Total number of items matching the request.

Remarks

Required

In this article
Back to top