/**@class android.provider.Telephony.RcsColumns.RcsMessageColumns The table that {@link android.telephony.ims.RcsMessage} gets persisted to */ var RcsMessageColumns = { /** Denotes the type of this message (i.e. {@link android.telephony.ims.RcsIncomingMessage} or {@link android.telephony.ims.RcsOutgoingMessage} */ MESSAGE_TYPE_COLUMN : "rcs_message_type", /** The unique identifier for the message in the database - i.e. the primary key. */ MESSAGE_ID_COLUMN : "rcs_message_row_id", /** The globally unique RCS identifier for the message. Please see 4.4.5.2 - GSMA RCC.53 (RCS Device API 1.6 Specification) */ GLOBAL_ID_COLUMN : "rcs_message_global_id", /** The subscription where this message was sent from/to. */ SUB_ID_COLUMN : "sub_id", /** The sending status of the message. @see android.telephony.ims.RcsMessage.RcsMessageStatus */ STATUS_COLUMN : "status", /** The creation timestamp of the message. */ ORIGINATION_TIMESTAMP_COLUMN : "origination_timestamp", /** The text content of the message. */ MESSAGE_TEXT_COLUMN : "rcs_text", /** The latitude content of the message, if it contains a location. */ LATITUDE_COLUMN : "latitude", /** The longitude content of the message, if it contains a location. */ LONGITUDE_COLUMN : "longitude", };