Class AddProjectLockDetails
Request payload to add lock to the resource.
Inherited Members
Namespace: Oci.AidocumentService.Models
Assembly: OCI.DotNetSDK.Aidocument.dll
Syntax
public class AddProjectLockDetails
Properties
Message
Declaration
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string | A message added by the creator of the lock. This is typically used to give an indication of why the resource is locked. |
RelatedResourceId
Declaration
[JsonProperty(PropertyName = "relatedResourceId")]
public string RelatedResourceId { get; set; }
Property Value
Type | Description |
---|---|
string | The ID of the resource that is locking this resource. Indicates that deleting this resource will remove the lock. |
Type
Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(StringEnumConverter))]
public AddProjectLockDetails.TypeEnum? Type { get; set; }
Property Value
Type | Description |
---|---|
AddProjectLockDetails.TypeEnum? | Type of the lock. |
Remarks
Required