Class EmailIngestReceiveFileDetails
Received files via Email to Dropbox.
Inheritance
System.Object
EmailIngestReceiveFileDetails
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.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class EmailIngestReceiveFileDetails
Constructors
| Improve this Doc View SourceEmailIngestReceiveFileDetails(String, IEnumerable<String>, String, String, String)
Initializes a new instance of the EmailIngestReceiveFileDetails class.
Declaration
public EmailIngestReceiveFileDetails(string inboxName, IEnumerable<string> attachmentNames, string subject = null, string fromName = null, string fromEmail = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | inboxName | Inbox name. |
System.Collections.Generic.IEnumerable<System.String> | attachmentNames | Submitted file names. |
System.String | subject | Subject of the email. |
System.String | fromName | The name as provided by the submitter. |
System.String | fromEmail | The email as provided by the submitter. |
Properties
| Improve this Doc View SourceAttachmentNames
Submitted file names.
Declaration
public IList<string> AttachmentNames { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> |
FromEmail
The email as provided by the submitter.
Declaration
public string FromEmail { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
FromName
The name as provided by the submitter.
Declaration
public string FromName { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
InboxName
Inbox name.
Declaration
public string InboxName { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
Subject
Subject of the email.
Declaration
public string Subject { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |