Show / Hide Table of Contents

Class MinimalFileLinkMetadata

The minimal file link metadata object

Inheritance
System.Object
MinimalFileLinkMetadata
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class MinimalFileLinkMetadata

Constructors

| Improve this Doc View Source

MinimalFileLinkMetadata(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 Source

Id

Unique identifier for the linked file.

Declaration
public string Id { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

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
| Improve this Doc View Source

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
| Improve this Doc View Source

Url

URL of the shared link.

Declaration
public string Url { get; protected set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • MinimalFileLinkMetadata(String, String, String, String)
  • Properties
    • Id
    • Path
    • Rev
    • Url
Back to top Generated by DocFX