Discuss this help topic in SecureBlackbox Forum
Defines sending modes for AS delivery receipts.
Declaration
[C#]
public enum TSBASDispositionSendingMode { dsmSentManually = 0, dsmSentAutomatically = 1 };
[VB.NET]
Enum TSBASDispositionSendingMode
dsmSentManually = 0
dsmSentAutomatically = 1
End Enum
[Pascal]
TSBASDispositionSendingMode = (dsmSentManually, dsmSentAutomatically);
[C++]
typedef uint8_t TSBASDispositionSendingModeRaw;
typedef enum { dsmSentManually = 0, dsmSentAutomatically = 1 } TSBASDispositionSendingMode;
[PHP]
class TSBASDispositionSendingMode extends TSBBaseEnum {
const dsmSentManually = 0;
const dsmSentAutomatically = 1;
}
[Java]
public enum TSBASDispositionSendingMode { dsmSentManually, dsmSentAutomatically }
Possible values
Declared in
.NET:
- Namespace: SBASCommon
- Assembly: SecureBlackbox.EDI
VCL:Java:
- Package: SecureBlackbox.EDI.jar
C++:
Discuss this help topic in SecureBlackbox Forum