MailboxConfig - LorenData/ECGrid-API GitHub Wiki
Back To Object Classes
public partial class MailboxConfig {
public short InBoxTimeout {get;set;}
public byte SegTerm {get;set;}
public byte ElmSep {get;set;}
public byte SubElmSep {get;set;}
public bool EBCDICFilter {get;set;}
public bool FTPasciiFilter {get;set;}
public bool LowPassFilter {get;set;}
public bool MailbagPassThrough {get;set;}
public bool DeleteOnDownload {get;set;}
public bool StripDirectedEnvelope {get;set;}
}
Public Properties
- InBoxTimeout - Short: The number of minutes the system should wait before sending out an e-mail notice of pending Parcels to download.
- SegTerm - Byte: Allows forced translation of the X12 Segment Terminator. A decimal representation of an ASCII character; the value of 0 is used to signify no translation.
- ElmSep - Byte: Allows the forced translation of the X12 Element Separator. A decimal representation of an ASCII character; the value of 0 is used to signify no translation.
- SubElmSep - Byte: Allows the forced translation of the X12 Subelement Separator. A decimal representation of an ASCII character; the value of 0 is used to signify no translation.
- EBCDICFilter - Boolean: A flag indicating if EBCDIC Filtering is enabled for this Mailbox. Contact NetOps for more information if you require this filter.
- FTPasciiFilter - Boolean: A flag indicating if FTP ASCII Filtering is enabled for this Mailbox. Contact NetOps for more information if you require this filter.
- LowPassFilter - Boolean: A flag indicating if Low Pass Filtering is enabled for this Mailbox. Contact NetOps for more information if you require this filter.
- MailbagPassThrough - Boolean: A flag indicating if ECGrid's exclusive X12.56 Mailbag Pass Through is enabled for this Mailbox. Contact NetOps for more information if you require this filter.
- DeleteOnDownload - Boolean: A flag indicating if the parcels are to be deleted on download is enabled for this Mailbox.
- StripDirectedEnvelope - Boolean: A flag indicating if the non EDI file/parcel envelopes add are to be stripped for this Mailbox.
Back To Object Classes