OBJECT
Sms
SMS stored in database
link GraphQL Schema definition
- type Sms {
- # Primary Key
- Int! :
- # Status: new|sending|complete|cancel|fail
- String! :
- # Recipient phone number
- String! :
- # Unix timestamp when sms was created
- Float! :
- # Unix timestamp when sms was edited last once
- Float! :
- # Unix timestamp when sms was sended to sms gate
- Float :
- # Unix timestamp for minimum sending date. For for delayed sending
- Float! :
- # Data for replacing macroses in sms template (JSON string)
- String :
- # SMS text
- String :
- # processing key (sms gate)
- String :
- # JSON string with data specified for processing
- String :
- # Status on processing (sms gate)
- String :
- # JSON string with any other data (for user use)
- String :
- # AlphaNumeric name of sender (if supported by sms gate)
- String :
- }