Show / Hide Table of Contents

Class UserFileMembershipInfo

The information about a user member of the shared content with an appended last seen timestamp.

Inheritance
System.Object
MembershipInfo
UserMembershipInfo
UserFileMembershipInfo
Inherited Members
UserMembershipInfo.User
MembershipInfo.AccessType
MembershipInfo.Permissions
MembershipInfo.Initials
MembershipInfo.IsInherited
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.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class UserFileMembershipInfo : UserMembershipInfo

Constructors

| Improve this Doc View Source

UserFileMembershipInfo(AccessLevel, UserInfo, IEnumerable<MemberPermission>, String, Boolean, Nullable<DateTime>, PlatformType)

Initializes a new instance of the UserFileMembershipInfo class.

Declaration
public UserFileMembershipInfo(AccessLevel accessType, UserInfo user, IEnumerable<MemberPermission> permissions = null, string initials = null, bool isInherited = false, DateTime? timeLastSeen = null, PlatformType platformType = null)
Parameters
Type Name Description
AccessLevel accessType

The access type for this member. It contains inherited access type from parent folder, and acquired access type from this folder.

UserInfo user

The account information for the membership user.

System.Collections.Generic.IEnumerable<MemberPermission> permissions

The permissions that requesting user has on this member. The set of permissions corresponds to the MemberActions in the request.

System.String initials

Never set.

System.Boolean isInherited

True if the member has access from a parent folder.

System.Nullable<System.DateTime> timeLastSeen

The UTC timestamp of when the user has last seen the content. Only populated if the user has seen the content and the caller has a plan that includes viewer history.

PlatformType platformType

The platform on which the user has last seen the content, or unknown.

Properties

| Improve this Doc View Source

PlatformType

The platform on which the user has last seen the content, or unknown.

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

TimeLastSeen

The UTC timestamp of when the user has last seen the content. Only populated if the user has seen the content and the caller has a plan that includes viewer history.

Declaration
public DateTime? TimeLastSeen { get; protected set; }
Property Value
Type Description
System.Nullable<System.DateTime>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • UserFileMembershipInfo(AccessLevel, UserInfo, IEnumerable<MemberPermission>, String, Boolean, Nullable<DateTime>, PlatformType)
  • Properties
    • PlatformType
    • TimeLastSeen
Back to top Generated by DocFX