MailboxIDInfo - LorenData/ECGrid-API GitHub Wiki
public partial class MailboxIDInfo {
public int MailboxID {get;set;}
public int NetworkID {get;set;}
public string Name {get;set;}
public DateTime Created {get;set;}
public DateTime Modified {get;set;}
public Status Status {get;set;}
public string Description {get;set;}
public UserIDInfo OwnerUserID {get;set;}
public UserIDInfo ErrorsUserID {get;set;}
public UserIDInfo InterconnectsUserID {get;set;}
public UserIDInfo NoticesUserID {get;set;}
public UserIDInfo ReportsUserID {get;set;}
public UserIDInfo CustomerServiceUserID {get;set;}
public UserIDInfo AccountingUserID {get;set;}
public bool Managed {get;set;}
public UseType UseType {get;set;}
public MailboxConfig Config {get;set;}
public bool ECGridAccount {get;set;}
public string DefaultAS2ID {get;set;}
public MailboxOwnerInfo OwnerInfo {get;set;}
public MailboxNetOpsInfo NetOpsInfo {get;set;}
}
Public Properties
- MailboxID - Integer: The MailboxID assigned to this Mailbox. It is unique throughout ECGrid.
- NetworkID - Integer: The Network where this Mailbox exists.
- Name - String: The descriptive name of the Mailbox.
- Created - DateTime: The date/time (UTC) the record was created.
- Modified - DateTime: The date/time (UTC) the record was last modified.
- Status - Enum Status: A numeric value representing the Mailbox's current status.
- Description - String: A description for this mailbox.
- OwnerUserID - Object UserIDInfo: A UserIDInfo Object for the user having ownership of this Mailbox.
- ErrorsUserID - Object UserIDInfo: A UserIDInfo Object for the user to receive error messages.
- InterconnectsUserID - Object UserIDInfo: A UserIDInfo Object for the user to receive Interconnect messages.
- NoticesUserID - Object UserIDInfo: A UserIDInfo Object for the user to receive administrative ECGrid messages.
- ReportsUserID - Object UserIDInfo: A UserIDInfo Object for the user to receive report ECGrid messages.
- CustomerServiceUserID - Object UserIDInfo: A UserIDInfo Object for the user to receive customer service ECGrid messages.
- AccountingUserID - Object UserIDInfo: A UserIDInfo Object for the user to receive accounting ECGrid messages.
- Managed - Boolean: Whether or not ECGrid manages the Mailbox (default=true).
- UseType - Enum UseType: A numeric value representing the Mailbox's current use type.
- Config - Object MailboxConfig: An object representing the configuration options for this mailbox.
- ECGridAccount - Boolean: Flag to identify if this is an ECGrid Account.
- DefaultAS2ID - String: the Default As2 Identifier for this mailbox.
- OwnerInfo - Object MailboxOwnerInfo: The OwnerInfo object is only returned if the current UserID has sufficient ownership rights to this entry; otherwise, a value of Nothing is returned for this object. Network-level users can see this information for any ECGridID in any Mailbox on the Network. Mailbox-level users only see this information within their own mailbox.
- NetOpsInfo - Object MailboxNetOpsInfo: A NetOpsInfo object of this mailbox.