Show / Hide Table of Contents

Class PaperUpdateArg

The paper update arg object

Inheritance
System.Object
PaperUpdateArg
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 PaperUpdateArg

Constructors

| Improve this Doc View Source

PaperUpdateArg(String, ImportFormat, PaperDocUpdatePolicy, Nullable<Int64>)

Initializes a new instance of the PaperUpdateArg class.

Declaration
public PaperUpdateArg(string path, ImportFormat importFormat, PaperDocUpdatePolicy docUpdatePolicy, long? paperRevision = null)
Parameters
Type Name Description
System.String path

Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be returned.

ImportFormat importFormat

The format of the provided data.

PaperDocUpdatePolicy docUpdatePolicy

How the provided content should be applied to the doc.

System.Nullable<System.Int64> paperRevision

The latest doc revision. Required when doc_update_policy is update. This value must match the current revision of the doc or error revision_mismatch will be returned.

Properties

| Improve this Doc View Source

DocUpdatePolicy

How the provided content should be applied to the doc.

Declaration
public PaperDocUpdatePolicy DocUpdatePolicy { get; protected set; }
Property Value
Type Description
PaperDocUpdatePolicy
| Improve this Doc View Source

ImportFormat

The format of the provided data.

Declaration
public ImportFormat ImportFormat { get; protected set; }
Property Value
Type Description
ImportFormat
| Improve this Doc View Source

PaperRevision

The latest doc revision. Required when doc_update_policy is update. This value must match the current revision of the doc or error revision_mismatch will be returned.

Declaration
public long? PaperRevision { get; protected set; }
Property Value
Type Description
System.Nullable<System.Int64>
| Improve this Doc View Source

Path

Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be returned.

Declaration
public string Path { get; protected set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • PaperUpdateArg(String, ImportFormat, PaperDocUpdatePolicy, Nullable<Int64>)
  • Properties
    • DocUpdatePolicy
    • ImportFormat
    • PaperRevision
    • Path
Back to top Generated by DocFX