Show / Hide Table of Contents

Class ListUsersOnPaperDocResponse

The list users on paper doc response object

Inheritance
System.Object
ListUsersOnPaperDocResponse
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.Paper
Assembly: Dropbox.Api.dll
Syntax
public class ListUsersOnPaperDocResponse

Constructors

| Improve this Doc View Source

ListUsersOnPaperDocResponse(IEnumerable<InviteeInfoWithPermissionLevel>, IEnumerable<UserInfoWithPermissionLevel>, UserInfo, Cursor, Boolean)

Initializes a new instance of the ListUsersOnPaperDocResponse class.

Declaration
public ListUsersOnPaperDocResponse(IEnumerable<InviteeInfoWithPermissionLevel> invitees, IEnumerable<UserInfoWithPermissionLevel> users, UserInfo docOwner, Cursor cursor, bool hasMore)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<InviteeInfoWithPermissionLevel> invitees

List of email addresses with their respective permission levels that are invited on the Paper doc.

System.Collections.Generic.IEnumerable<UserInfoWithPermissionLevel> users

List of users with their respective permission levels that are invited on the Paper folder.

UserInfo docOwner

The Paper doc owner. This field is populated on every single response.

Cursor cursor

Pass the cursor into DocsUsersListContinueAsync(ListUsersOnPaperDocContinueArgs) to paginate through all users. The cursor preserves all properties as specified in the original call to DocsUsersListAsync(ListUsersOnPaperDocArgs).

System.Boolean hasMore

Will be set to True if a subsequent call with the provided cursor to DocsUsersListContinueAsync(ListUsersOnPaperDocContinueArgs) returns immediately with some results. If set to False please allow some delay before making another call to DocsUsersListContinueAsync(ListUsersOnPaperDocContinueArgs).

Properties

| Improve this Doc View Source

Cursor

Pass the cursor into DocsUsersListContinueAsync(ListUsersOnPaperDocContinueArgs) to paginate through all users. The cursor preserves all properties as specified in the original call to DocsUsersListAsync(ListUsersOnPaperDocArgs).

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

DocOwner

The Paper doc owner. This field is populated on every single response.

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

HasMore

Will be set to True if a subsequent call with the provided cursor to DocsUsersListContinueAsync(ListUsersOnPaperDocContinueArgs) returns immediately with some results. If set to False please allow some delay before making another call to DocsUsersListContinueAsync(ListUsersOnPaperDocContinueArgs).

Declaration
public bool HasMore { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Invitees

List of email addresses with their respective permission levels that are invited on the Paper doc.

Declaration
public IList<InviteeInfoWithPermissionLevel> Invitees { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<InviteeInfoWithPermissionLevel>
| Improve this Doc View Source

Users

List of users with their respective permission levels that are invited on the Paper folder.

Declaration
public IList<UserInfoWithPermissionLevel> Users { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<UserInfoWithPermissionLevel>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListUsersOnPaperDocResponse(IEnumerable<InviteeInfoWithPermissionLevel>, IEnumerable<UserInfoWithPermissionLevel>, UserInfo, Cursor, Boolean)
  • Properties
    • Cursor
    • DocOwner
    • HasMore
    • Invitees
    • Users
Back to top Generated by DocFX