Show / Hide Table of Contents

Class CreateBlocklistDetails

The blocklist record details.

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

Properties

Operation

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

The operation type

Remarks

Required

Reason

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

The reason why the operation is blocklisted

Target

Declaration
[Required(ErrorMessage = "Target is required.")]
[JsonProperty(PropertyName = "target")]
public BlocklistTarget Target { get; set; }
Property Value
Type Description
BlocklistTarget
Remarks

Required

In this article
Back to top