Class MinimalFileLinkMetadata
The minimal file link metadata object
Inheritance
Inherited Members
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class MinimalFileLinkMetadata
  Constructors
| Improve this Doc View SourceMinimalFileLinkMetadata(String, String, String, String)
Initializes a new instance of the MinimalFileLinkMetadata class.
Declaration
public MinimalFileLinkMetadata(string url, string rev, string id = null, string path = null)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | url | URL of the shared link.  | 
      
| System.String | rev | A unique identifier for the current revision of a file. This field is the same rev as elsewhere in the API and can be used to detect changes and avoid conflicts.  | 
      
| System.String | id | Unique identifier for the linked file.  | 
      
| System.String | path | Full path in the user's Dropbox. This always starts with a slash. This field will only be present only if the linked file is in the authenticated user's Dropbox.  | 
      
Properties
| Improve this Doc View SourceId
Unique identifier for the linked file.
Declaration
public string Id { get; protected set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Path
Full path in the user's Dropbox. This always starts with a slash. This field will only be present only if the linked file is in the authenticated user's Dropbox.
Declaration
public string Path { get; protected set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Rev
A unique identifier for the current revision of a file. This field is the same rev as elsewhere in the API and can be used to detect changes and avoid conflicts.
Declaration
public string Rev { get; protected set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Url
URL of the shared link.
Declaration
public string Url { get; protected set; }
  Property Value
| Type | Description | 
|---|---|
| System.String |