Class AddFolderMemberArg
The add folder member arg object
Inheritance
System.Object
AddFolderMemberArg
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.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class AddFolderMemberArg
Constructors
| Improve this Doc View SourceAddFolderMemberArg(String, IEnumerable<AddMember>, Boolean, String)
Initializes a new instance of the AddFolderMemberArg class.
Declaration
public AddFolderMemberArg(string sharedFolderId, IEnumerable<AddMember> members, bool quiet = false, string customMessage = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | sharedFolderId | The ID for the shared folder. |
System.Collections.Generic.IEnumerable<AddMember> | members | The intended list of members to add. Added members will receive invites to join the shared folder. |
System.Boolean | quiet | Whether added members should be notified via email and device notifications of their invite. |
System.String | customMessage | Optional message to display to added members in their invitation. |
Properties
| Improve this Doc View SourceCustomMessage
Optional message to display to added members in their invitation.
Declaration
public string CustomMessage { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
Members
The intended list of members to add. Added members will receive invites to join the shared folder.
Declaration
public IList<AddMember> Members { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<AddMember> |
Quiet
Whether added members should be notified via email and device notifications of their invite.
Declaration
public bool Quiet { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
SharedFolderId
The ID for the shared folder.
Declaration
public string SharedFolderId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |