Show / Hide Table of Contents

Class PhaseExtractEntry

Job phase extract message.

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

Properties

Message

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

Message in entry.

Remarks

Required

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PhaseExtractTypes? Type { get; set; }
Property Value
Type Description
PhaseExtractTypes?

Type of extract.

Remarks

Required

In this article
Back to top