Show / Hide Table of Contents

Class AssessorCheckAction

Assessor Check Action

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

Properties

Description

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

A user-friendly description. Does not have to be unique, and it's changeable. Avoid entering confidential information.

DisplayName

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

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

Remarks

Required

Name

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

The Assessor Check Action Name.

Remarks

Required

UserDefinedProperties

Declaration
[JsonProperty(PropertyName = "userDefinedProperties")]
public UserDefinedProperties UserDefinedProperties { get; set; }
Property Value
Type Description
UserDefinedProperties
In this article
Back to top