Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion target365_sdk/models/delivery_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ def _accepted_params(self):
'price',
'sender',
'recipient',
'operator',
'operatorId',
'statusCode',
'detailedStatusCode',
'delivered',
'billed',
'smscTransactionId',
'smscMessageParts',
]
15 changes: 9 additions & 6 deletions target365_sdk/models/out_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,26 @@ def _init_preprocess(self, args):

def _accepted_params(self):
return [
'id',
'accountId',
'transactionId',
'correlationId',
'keywordId',
'sender',
'recipient',
'content',
'strex', # OutMessageStrex class
'allowUnicode', # TRUE to allow unicode SMS, FALSE to fail if content is unicode, NULL to replace unicode chars to '?'
'sendTime',
'timeToLive',
'priority',
'deliveryMode',
'allowUnicode', # TRUE to allow unicode SMS, FALSE to fail if content is unicode, NULL to replace unicode chars to '?'
'strex', # OutMessageStrex class
'lastModified',
'created',
'deliveryReportUrl',
'statusCode',
'smscTransactionId',
'detailedStatusCode',
'delivered',
'smscMessageParts',
'tags',
'properties',
'lastModified',
'created',
]