Class SmsTableInfo
Table 'sms': This table will hold outgoing sms messages when transmitted with WebServices
Implements
Inherited Members
Namespace: SuperOffice.CRM.Data
Assembly: SoDataBase.dll
Syntax
[DatabaseTable("sms")]
public class SmsTableInfo : TableInfo, ICloneable
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
Fields
DictionaryTableName
Conceptual name of table Sms in the database dictionary: sms
Declaration
public const string DictionaryTableName = "sms"
Field Value
Type | Description |
---|---|
string |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
Properties
CustomerId
Field 'customer_id' in table 'sms': Dictionary type FK, target: Person, .NET type: int
Reference to the customer id, used for eMarketeerDeclaration
public Int32FieldInfo CustomerId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
CustomerId_InnerJoin_Person
Generated join from the foreign key CustomerId in this table, to its target table PersonTableInfo.
Declaration
public TargetedInnerJoin<PersonTableInfo> CustomerId_InnerJoin_Person { get; }
Property Value
Type | Description |
---|---|
TargetedInnerJoin<PersonTableInfo> |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
Definition
Definition of the table as described in the deployed runtime dictionary
Declaration
public override SoTable Definition { get; }
Property Value
Type | Description |
---|---|
SoTable |
Overrides
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
DeliveredAt
Field 'delivered_at' in table 'sms': Dictionary type DateTime, .NET type: DateTime
The date and time when the sms was deliveredDeclaration
public DateTimeFieldInfo DeliveredAt { get; }
Property Value
Type | Description |
---|---|
DateTimeFieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
DeliveryExtStatus
Field 'delivery_ext_status' in table 'sms': Dictionary type String[256], .NET type: string
Indicates extended delivery status for the smsDeclaration
public StringFieldInfo DeliveryExtStatus { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
DeliveryExtStatusDesc
Field 'delivery_ext_status_desc' in table 'sms': Dictionary type String[256], .NET type: string
Indicates extended delivery status description for the smsDeclaration
public StringFieldInfo DeliveryExtStatusDesc { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
DeliveryStatus
Field 'delivery_status' in table 'sms': Dictionary type String[256], .NET type: string
Indicates a delivery status for the smsDeclaration
public StringFieldInfo DeliveryStatus { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
DeliveryStatusDesc
Field 'delivery_status_desc' in table 'sms': Dictionary type String[256], .NET type: string
Indicates a delivery status description for the smsDeclaration
public StringFieldInfo DeliveryStatusDesc { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
DictionaryTableNumber
Table number for table Sms in the database dictionary; potentially changes between databases, but always the same over the lifetime of any single database
Declaration
public int DictionaryTableNumber { get; }
Property Value
Type | Description |
---|---|
int |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
MessageId
Field 'message_id' in table 'sms': Dictionary type FK, target: EjMessage, .NET type: int
Reference to the message id this SMS was sent fromDeclaration
public Int32FieldInfo MessageId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
MessageId_InnerJoin_EjMessage
Generated join from the foreign key MessageId in this table, to its target table EjMessageTableInfo.
Declaration
public TargetedInnerJoin<EjMessageTableInfo> MessageId_InnerJoin_EjMessage { get; }
Property Value
Type | Description |
---|---|
TargetedInnerJoin<EjMessageTableInfo> |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
OutboxId
Field 'outbox_id' in table 'sms': Dictionary type FK, target: Outbox, .NET type: int
The outbox entry which holds the information about the sms to be sentDeclaration
public Int32FieldInfo OutboxId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
OutboxId_InnerJoin_Outbox
Generated join from the foreign key OutboxId in this table, to its target table OutboxTableInfo.
Declaration
public TargetedInnerJoin<OutboxTableInfo> OutboxId_InnerJoin_Outbox { get; }
Property Value
Type | Description |
---|---|
TargetedInnerJoin<OutboxTableInfo> |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
OutgoingMessageId
Field 'outgoing_message_id' in table 'sms': Dictionary type FK, target: OutgoingMessage, .NET type: int
Reference to the outgoing message entry created by netserver for sending and status updateDeclaration
public Int32FieldInfo OutgoingMessageId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
OutgoingMessageId_InnerJoin_OutgoingMessage
Generated join from the foreign key OutgoingMessageId in this table, to its target table OutgoingMessageTableInfo.
Declaration
public TargetedInnerJoin<OutgoingMessageTableInfo> OutgoingMessageId_InnerJoin_OutgoingMessage { get; }
Property Value
Type | Description |
---|---|
TargetedInnerJoin<OutgoingMessageTableInfo> |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
ReferenceKey
Field 'reference_key' in table 'sms': Dictionary type String[256], .NET type: string
The reference used for delivery reportDeclaration
public StringFieldInfo ReferenceKey { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
RuntimeDefinition
Definition of the table as described in the deployed runtime dictionary
Declaration
[Obsolete("Use instance property Definition or static member DictionaryTableNumber", true)]
public static SoTable RuntimeDefinition { get; }
Property Value
Type | Description |
---|---|
SoTable |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
SessionKey
Field 'session_key' in table 'sms': Dictionary type String[256], .NET type: string
The reference used for identifying a session, like in-reply-to and message-idDeclaration
public StringFieldInfo SessionKey { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
ShipmentId
Field 'shipment_id' in table 'sms': Dictionary type FK, target: SShipment, .NET type: int
Reference to the shipment id, used for eMarketeerDeclaration
public Int32FieldInfo ShipmentId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
ShipmentId_InnerJoin_SShipment
Generated join from the foreign key ShipmentId in this table, to its target table SShipmentTableInfo.
Declaration
public TargetedInnerJoin<SShipmentTableInfo> ShipmentId_InnerJoin_SShipment { get; }
Property Value
Type | Description |
---|---|
TargetedInnerJoin<SShipmentTableInfo> |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
SmsId
Field 'id' in table 'sms': Dictionary type PK, .NET type: int
Primary keyDeclaration
public Int32FieldInfo SmsId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().
SmsText
Field 'sms_text' in table 'sms': Dictionary type Clob, .NET type: string
The actual text to be sentDeclaration
public StringFieldInfo SmsText { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling TablesInfo.GetSmsInfo().