ListUsersOnPaperDocResponse

public class ListUsersOnPaperDocResponse : CustomStringConvertible, JSONRepresentable

The ListUsersOnPaperDocResponse struct

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

    Declaration

    Swift

    public let invitees: [Paper.InviteeInfoWithPermissionLevel]
  • List of users with their respective permission levels that are invited on the Paper folder.

    Declaration

    Swift

    public let users: [Paper.UserInfoWithPermissionLevel]
  • The Paper doc owner. This field is populated on every single response.

    Declaration

    Swift

    public let docOwner: Sharing.UserInfo
  • Pass the cursor into docsUsersListContinue to paginate through all users. The cursor preserves all properties as specified in the original call to docsUsersList.

    Declaration

    Swift

    public let cursor: Paper.Cursor
  • Will be set to True if a subsequent call with the provided cursor to docsUsersListContinue returns immediately with some results. If set to False please allow some delay before making another call to docsUsersListContinue.

    Declaration

    Swift

    public let hasMore: Bool
  • Declaration

    Swift

    public var description: String { get }