Class FileLockMetadata
The file lock metadata object
Inherited Members
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class FileLockMetadata
Constructors
View SourceFileLockMetadata(bool?, string, string, DateTime?)
Initializes a new instance of the FileLockMetadata class.
Declaration
public FileLockMetadata(bool? isLockholder = null, string lockholderName = null, string lockholderAccountId = null, DateTime? created = null)
Parameters
| Type | Name | Description |
|---|---|---|
| bool? | isLockholder | True if caller holds the file lock. |
| string | lockholderName | The display name of the lock holder. |
| string | lockholderAccountId | The account ID of the lock holder if known. |
| DateTime? | created | The timestamp of the lock was created. |
Properties
View SourceCreated
The timestamp of the lock was created.
Declaration
public DateTime? Created { get; protected set; }
Property Value
| Type | Description |
|---|---|
| DateTime? |
IsLockholder
True if caller holds the file lock.
Declaration
public bool? IsLockholder { get; protected set; }
Property Value
| Type | Description |
|---|---|
| bool? |
LockholderAccountId
The account ID of the lock holder if known.
Declaration
public string LockholderAccountId { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
LockholderName
The display name of the lock holder.
Declaration
public string LockholderName { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |