Show / Hide Table of Contents

Class DesktopAction

Provides information about actions performed on a desktop, including type and time.

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

Properties

Action

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

An action performed on a desktop.

Remarks

Required

TimeApplied

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

The time of an action performed on a desktop.

Remarks

Required

In this article
Back to top