Show / Hide Table of Contents

Class CreateVanityDomainActivityDetails

Schedule activity details to vanity domain on pod

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

Properties

OperationType

Declaration
[Required(ErrorMessage = "OperationType is required.")]
[JsonProperty(PropertyName = "operationType")]
[JsonConverter(typeof(StringEnumConverter))]
public CreateVanityDomainActivityDetails.OperationTypeEnum? OperationType { get; set; }
Property Value
Type Description
CreateVanityDomainActivityDetails.OperationTypeEnum?

The type of operation

Remarks

Required

TimeScheduled

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

Activity start time

Remarks

Required

VanityDomainId

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

Vanity domain ID

Remarks

Required

In this article
Back to top