1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
|
Objects
=======
For various (mostly historical) reasons, all objects you get from Gammu are
not real objects but rather a dictionaries. This has quite a big impact of
usability and will most likely change in the future.
All the objects basically map to C structures, so you might also refer to
:ref:`libgammu` chapter.
.. _sms_obj:
SMS Object
----------
Message dictionary can consist of following fields:
.. attribute:: SMSC
SMSC information, see :ref:`smsc_obj`.
.. attribute:: Number
Recipient number, needs to be set for sending.
.. attribute:: Name
Name of the message, does not make any effect on sending, some phones might
store it.
.. attribute:: UDH
User defined headers for SMS, see :ref:`udh_obj`.
.. attribute:: Text
Message text
.. attribute:: Folder
Folder where the message is stored
.. attribute:: Location
Location where the message is stored
.. attribute:: InboxFolder
Indication whether folder is an inbox
.. attribute:: DeliveryStatus
Message delivery status, used only for received messages
.. attribute:: ReplyViaSameSMSC
Flag indicating whether reply using same SMSC is requested
.. attribute:: Class
Message class
.. attribute:: MessageReference
Message reference number, used mostly to identify delivery reports
.. attribute:: ReplaceMessage
Id of message which this message is supposed to replace
.. attribute:: RejectDuplicates
Whether to reject duplicates
.. attribute:: Memory
Memory where the message is stored
.. attribute:: Type
Message type, one of:
* ``Submit`` - message to be send
* ``Deliver`` - delivered message
* ``Status_Report`` - when creating new message this will create submit message
with request for delivery report
.. attribute:: Coding
Message encoding, one of:
* ``Unicode_No_Compression`` - unicode message which can contain any chars,
but can be only 70 chars long
* ``Unicode_Compression`` - not supported by Gammu and most phones
* ``Default_No_Compression`` - message with GSM alphabet only, up to 160 chars
long
* ``Default_Compression`` - not supported by Gammu and most phones
* ``8bit`` - for binary messages
.. attribute:: DateTime
Timestamp when the message was received or sent.
Please note that most phones do no record timestamp of sent messages.
.. attribute:: SMSCDateTime
Timestamp when the message was at SMSC.
.. attribute:: State
Message state, one of:
* ``Sent``
* ``UnSent``
* ``Read``
* ``UnRead``
Examples::
# Simple message to send, using SMSC from phone
SMS_1 = {
'Number': '123465',
'SMSC': {'Location': 1},
'Text': 'Hello world!',
}
# Class 0 (on display) message using custom SMSC number
SMS_2 = {
'Number': '123465',
'SMSC': {'Number': '+420987654321'},
'Text': 'Hello world!',
'Class': 0,
}
.. _udh_obj:
UDH Object
----------
UDH dictionary can consist of following fields:
.. attribute:: ID8bit
8-bit ID of the message, not required
.. attribute:: ID16bit
16-bit ID of the message, not required
.. attribute:: PartNumber
Number of current part
.. attribute:: AllParts
Count of all message parts
.. attribute:: Type
UDH type, one of predefined strings:
* ``NoUDH``
* ``ConcatenatedMessages``
* ``ConcatenatedMessages16bit``
* ``DisableVoice``
* ``DisableFax``
* ``DisableEmail``
* ``EnableVoice``
* ``EnableFax``
* ``EnableEmail``
* ``VoidSMS``
* ``NokiaRingtone``
* ``NokiaRingtoneLong``
* ``NokiaOperatorLogoLong``
* ``NokiaCallerLogo``
* ``NokiaWAP``
* ``NokiaWAPLong``
* ``NokiaCalendarLong``
* ``NokiaProfileLong``
* ``NokiaPhonebookLong``
* ``UserUDH``
.. attribute:: Text
UDH content
Example::
UDH = {
'ID8bit': 0xcd,
'PartNumber': 1,
'AllParts': 2,
'Type': 'ConcatenatedMessages',
}
.. _smsc_obj:
SMSC Object
-----------
SMSC dictionary can consist of following fields:
.. attribute:: Location
Location where the SMSC is stored
.. attribute:: Number
SMSC number
.. attribute:: Name
Name of the SMSC configuration
.. attribute:: DefaultNumber
Default recipient number, ignored on most phones
.. attribute:: Format
Default message format, one of:
* ``Text``
* ``Pager``
* ``Fax``
* ``Email``
.. attribute:: Validity
Default message validity as a string
* ``NA`` - validity not available
* ``Max`` - maximal validity allowed by network
* ``nM``, ``nH``, ``nD``, ``nW`` - period defined in minutes, hours, days or
weeks, eg. ``3W``
Example::
SMSC = {
'Location': 1,
'Number': '+420987654321',
'Format': 'Text',
'Validity': 'Max',
}
.. _sms_info_obj:
SMS Info Object
---------------
Message info dictionary can consist of following fields:
.. attribute:: Unicode
Whether to use Unicode for the message.
.. attribute:: ReplaceMessage
Id of message which this message is supposed to replace
.. attribute:: Unknown
Boolean flag indicating there was some part which Gammu could not decode.
.. attribute:: Class
Message class
.. attribute:: Entries
Actual message data, see :ref:`sms_info_part_obj`.
Example::
SMSINFO = {
'Class': 1,
'Entries': [
{'ID': 'Text', 'Buffer': 'This is a '},
{'ID': 'Text', 'Buffer': 'message', 'Italic': True},
{'ID': 'Text', 'Buffer': ' from '},
{'ID': 'Text', 'Buffer': 'Gammu', 'Bold': True},
],
}
.. _sms_info_part_obj:
SMS Info Part Object
--------------------
Message component can consist of following fields:
.. attribute:: ID
Identification of the part type:
* ``Text``
* ``ConcatenatedTextLong`` - Contacenated SMS, when longer than 1 SMS.
* ``ConcatenatedAutoTextLong`` - Contacenated SMS, auto Default/Unicode coding.
* ``ConcatenatedTextLong16bit``
* ``ConcatenatedAutoTextLong16bit``
* ``NokiaProfileLong`` - Nokia profile = Name`` Ringtone`` ScreenSaver
* ``NokiaPictureImageLong`` - Nokia Picture Image + (text)
* ``NokiaScreenSaverLong`` - Nokia screen saver + (text)
* ``NokiaRingtone`` - Nokia ringtone - old SM2.0 format`` 1 SMS
* ``NokiaRingtoneLong`` - Nokia ringtone contacenated`` when very long
* ``NokiaOperatorLogo`` - Nokia 72x14 operator logo`` 1 SMS
* ``NokiaOperatorLogoLong`` - Nokia 72x14 op logo or 78x21 in 2 SMS
* ``NokiaCallerLogo`` - Nokia 72x14 caller logo`` 1 SMS
* ``NokiaWAPBookmarkLong`` - Nokia WAP bookmark in 1 or 2 SMS
* ``NokiaWAPSettingsLong`` - Nokia WAP settings in 2 SMS
* ``NokiaMMSSettingsLong`` - Nokia MMS settings in 2 SMS
* ``NokiaVCARD10Long`` - Nokia VCARD 1.0 - only name and default number
* ``NokiaVCARD21Long`` - Nokia VCARD 2.1 - all numbers + text
* ``NokiaVCALENDAR10Long`` - Nokia VCALENDAR 1.0 - can be in few sms
* ``NokiaVTODOLong``
* ``VCARD10Long``
* ``VCARD21Long``
* ``DisableVoice``
* ``DisableFax``
* ``DisableEmail``
* ``EnableVoice``
* ``EnableFax``
* ``EnableEmail``
* ``VoidSMS``
* ``EMSSound10`` - IMelody 1.0
* ``EMSSound12`` - IMelody 1.2
* ``EMSSonyEricssonSound`` - IMelody without header - SonyEricsson extension
* ``EMSSound10Long`` - IMelody 1.0 with UPI.
* ``EMSSound12Long`` - IMelody 1.2 with UPI.
* ``EMSSonyEricssonSoundLong`` - IMelody without header with UPI.
* ``EMSPredefinedSound``
* ``EMSPredefinedAnimation``
* ``EMSAnimation``
* ``EMSFixedBitmap`` - Fixed bitmap of size 16x16 or 32x32.
* ``EMSVariableBitmap``
* ``EMSVariableBitmapLong``
* ``MMSIndicatorLong`` - MMS message indicator.
* ``WAPIndicatorLong``
* ``AlcatelMonoBitmapLong`` - Variable bitmap with black and white colors
* ``AlcatelMonoAnimationLong`` - Variable animation with black and white colors
* ``AlcatelSMSTemplateName``
* ``SiemensFile`` - Siemens OTA
.. attribute:: Left
Text formatting
.. attribute:: Right
Text formatting
.. attribute:: Center
Text formatting
.. attribute:: Large
Text formatting
.. attribute:: Small
Text formatting
.. attribute:: Bold
Text formatting
.. attribute:: Italic
Text formatting
.. attribute:: Underlined
Text formatting
.. attribute:: Strikethrough
Text formatting
.. attribute:: Protected
Whether message part should be protected (DRM)
.. attribute:: Number
Number to encode in message.
.. attribute:: Ringtone
Ringtone to encode in message.
.. attribute:: Bitmap
Bitmap to encode in message.
.. attribute:: Bookmark
Bookmark to encode in message.
.. attribute:: Settings
Settings to encode in message.
.. attribute:: MMSIndicator
MMS indication to encode in message.
.. attribute:: Phonebook
Phonebook entry to encode in message, see :ref:`pbk_obj`.
.. attribute:: Calendar
Calendar entry to encode in message, see :ref:`cal_obj`.
.. attribute:: ToDo
Todo entry to encode in message, see :ref:`todo_obj`.
.. attribute:: File
File to encode in message, see :ref:`file_obj`.
.. attribute:: Buffer
String to encode in message.
.. _todo_obj:
Todo Object
-----------
Todo entry is a dictionary consisting of following fields:
.. attribute:: Location
Location where the entry is stored
.. attribute:: Type
Type of entry, one of:
* ``REMINDER`` - Reminder or Date
* ``CALL`` - Call
* ``MEETING`` - Meeting
* ``BIRTHDAY`` - Birthday or Anniversary or Special Occasion
* ``MEMO`` - Memo or Miscellaneous
* ``TRAVEL`` - Travel
* ``VACATION`` - Vacation
* ``T_ATHL`` - Training - Athletism
* ``T_BALL`` - Training - Ball Games
* ``T_CYCL`` - Training - Cycling
* ``T_BUDO`` - Training - Budo
* ``T_DANC`` - Training - Dance
* ``T_EXTR`` - Training - Extreme Sports
* ``T_FOOT`` - Training - Football
* ``T_GOLF`` - Training - Golf
* ``T_GYM`` - Training - Gym
* ``T_HORS`` - Training - Horse Race
* ``T_HOCK`` - Training - Hockey
* ``T_RACE`` - Training - Races
* ``T_RUGB`` - Training - Rugby
* ``T_SAIL`` - Training - Sailing
* ``T_STRE`` - Training - Street Games
* ``T_SWIM`` - Training - Swimming
* ``T_TENN`` - Training - Tennis
* ``T_TRAV`` - Training - Travels
* ``T_WINT`` - Training - Winter Games
* ``ALARM`` - Alarm
* ``DAILY_ALARM`` - Alarm repeating each day.
.. attribute:: Priority
Entry priority, one of:
* ``High``
* ``Medium``
* ``Low``
* ``None``
.. attribute:: Entries
Actual entries, see :ref:`todo_entry_obj`
Example::
TODO = {
'Type': 'MEMO',
'Entries': [
{'Type': 'END_DATETIME', 'Value': datetime.datetime.now() + datetime.timedelta(days = 1)},
{'Type': 'TEXT', 'Value': 'Buy some milk'},
],
}
.. _todo_entry_obj:
Todo Entries Object
-------------------
.. attribute:: Type
Type of entry, one of:
* ``END_DATETIME`` - Due date (Date).
* ``COMPLETED`` - Whether is completed (Number).
* ``ALARM_DATETIME`` - When should alarm be fired (Date).
* ``SILENT_ALARM_DATETIME`` - When should silent alarm be fired (Date).
* ``TEXT`` - Text of to do (Text).
* ``DESCRIPTION`` - Description of to do (Text).
* ``LOCATION`` - Location of to do (Text).
* ``PRIVATE`` - Whether entry is private (Number).
* ``CATEGORY`` - Category of entry (Number).
* ``CONTACTID`` - Related contact ID (Number).
* ``PHONE`` - Number to call (Text).
* ``LUID`` - IrMC LUID which can be used for synchronisation (Text).
* ``LAST_MODIFIED`` - Date and time of last modification (Date).
* ``START_DATETIME`` - Start date (Date).
.. attribute:: Value
Actual value, corresponding type to Type field.
.. _cal_obj:
Calendar Object
---------------
Calendar entry is a dictionary consisting of following fields:
.. attribute:: Location
Location where the entry is stored
.. attribute:: Type
Type of entry, one of:
* ``REMINDER`` - Reminder or Date
* ``CALL`` - Call
* ``MEETING`` - Meeting
* ``BIRTHDAY`` - Birthday or Anniversary or Special Occasion
* ``MEMO`` - Memo or Miscellaneous
* ``TRAVEL`` - Travel
* ``VACATION`` - Vacation
* ``T_ATHL`` - Training - Athletism
* ``T_BALL`` - Training - Ball Games
* ``T_CYCL`` - Training - Cycling
* ``T_BUDO`` - Training - Budo
* ``T_DANC`` - Training - Dance
* ``T_EXTR`` - Training - Extreme Sports
* ``T_FOOT`` - Training - Football
* ``T_GOLF`` - Training - Golf
* ``T_GYM`` - Training - Gym
* ``T_HORS`` - Training - Horse Race
* ``T_HOCK`` - Training - Hockey
* ``T_RACE`` - Training - Races
* ``T_RUGB`` - Training - Rugby
* ``T_SAIL`` - Training - Sailing
* ``T_STRE`` - Training - Street Games
* ``T_SWIM`` - Training - Swimming
* ``T_TENN`` - Training - Tennis
* ``T_TRAV`` - Training - Travels
* ``T_WINT`` - Training - Winter Games
* ``ALARM`` - Alarm
* ``DAILY_ALARM`` - Alarm repeating each day.
.. attribute:: Entries
Actual entries, see :ref:`cal_entry_obj`
Example::
CAL = {
'Type': 'MEMO',
'Entries': [
{'Type': 'START_DATETIME', 'Value': datetime.datetime.now()},
{'Type': 'END_DATETIME', 'Value': datetime.datetime.now() + datetime.timedelta(days = 1)},
{'Type': 'LOCATION', 'Value': 'Home'},
{'Type': 'TEXT', 'Value': 'Relax for one day'},
],
}
.. _cal_entry_obj:
Calendar Entries Object
-----------------------
.. attribute:: Type
Type of entry, one of:
* ``START_DATETIME`` - Date and time of event start.
* ``END_DATETIME`` - Date and time of event end.
* ``TONE_ALARM_DATETIME`` - Alarm date and time.
* ``SILENT_ALARM_DATETIME`` - Date and time of silent alarm.
* ``TEXT`` - Text.
* ``DESCRIPTION`` - Detailed description.
* ``LOCATION`` - Location.
* ``PHONE`` - Phone number.
* ``PRIVATE`` - Whether this entry is private.
* ``CONTACTID`` - Related contact id.
* ``REPEAT_DAYOFWEEK`` - Repeat each x'th day of week.
* ``REPEAT_DAY`` - Repeat each x'th day of month.
* ``REPEAT_DAYOFYEAR`` - Repeat each x'th day of year.
* ``REPEAT_WEEKOFMONTH`` - Repeat x'th week of month.
* ``REPEAT_MONTH`` - Repeat x'th month.
* ``REPEAT_FREQUENCY`` - Repeating frequency.
* ``REPEAT_STARTDATE`` - Repeating start.
* ``REPEAT_STOPDATE`` - Repeating end.
* ``REPEAT_COUNT`` - Number of repetitions.
* ``LUID`` - IrMC LUID which can be used for synchronisation.
* ``LAST_MODIFIED`` - Date and time of last modification.
.. attribute:: Value
Actual value, corresponding type to Type field.
.. _pbk_obj:
Phonebook Object
----------------
Phonebook entry is a dictionary consisting of following fields:
.. attribute:: Location
Location where the entry is stored
.. attribute:: MemoryType
Memory where the message is stored
.. attribute:: Entries
Actual entries, see :ref:`pbk_entry_obj`
Example::
PBK = {
'Location': 1000,
'MemoryType': 'ME',
'Entries': [
{'Type': 'Number_General', 'Value': '+420123456789'},
{'Type': 'Text_Name', 'Value': 'Stojan Jakotyc'},
],
}
.. _pbk_entry_obj:
Phonebook Entries Object
------------------------
.. attribute:: Type
Type of entry, one of:
* ``Number_General`` - General number. (Text)
* ``Number_Mobile`` - Mobile number. (Text)
* ``Number_Work`` - Work number. (Text)
* ``Number_Fax`` - Fax number. (Text)
* ``Number_Home`` - Home number. (Text)
* ``Number_Pager`` - Pager number. (Text)
* ``Number_Other`` - Other number. (Text)
* ``Text_Note`` - Note. (Text)
* ``Text_Postal`` - Complete postal address. (Text)
* ``Text_Email`` - Email. (Text)
* ``Text_Email2`` - Second email. (Text)
* ``Text_URL`` - URL (Text)
* ``Date`` - Date and time of last call. (Date)
* ``Caller_Group`` - Caller group. (Number)
* ``Text_Name`` - Name (Text)
* ``Text_LastName`` - Last name. (Text)
* ``Text_FirstName`` - First name. (Text)
* ``Text_Company`` - Company. (Text)
* ``Text_JobTitle`` - Job title. (Text)
* ``Category`` - Category. (Number, if -1 then text)
* ``Private`` - Whether entry is private. (Number)
* ``Text_StreetAddress`` - Street address. (Text)
* ``Text_City`` - City. (Text)
* ``Text_State`` - State. (Text)
* ``Text_Zip`` - Zip code. (Text)
* ``Text_Country`` - Country. (Text)
* ``Text_Custom1`` - Custom information 1. (Text)
* ``Text_Custom2`` - Custom information 2. (Text)
* ``Text_Custom3`` - Custom information 3. (Text)
* ``Text_Custom4`` - Custom information 4. (Text)
* ``RingtoneID`` - Ringtone ID. (Number)
* ``PictureID`` - Picture ID. (Number)
* ``Text_UserID`` - User ID. (Text)
* ``CallLength`` - Length of call (Number)
* ``Text_LUID`` - LUID - Unique Identifier used for synchronisation (Text)
* ``LastModified`` - Date of last modification (Date)
* ``Text_NickName`` - Nick name (Text)
* ``Text_FormalName`` - Formal name (Text)
* ``Text_WorkStreetAddress`` - Work street address. (Text)
* ``Text_WorkCity`` - Work city. (Text)
* ``Text_WorkState`` - Work state. (Text)
* ``Text_WorkZip`` - Work zip code. (Text)
* ``Text_WorkCountry`` - Work country. (Text)
* ``Text_WorkPostal`` - Complete work postal address. (Text)
* ``Text_PictureName`` - Picture name (on phone filesystem). (Text)
* ``PushToTalkID`` - Push-to-talk ID (Text)
* ``Number_Messaging`` - Favorite messaging number. (Text)
* ``Photo`` - Photo (Picture).
* ``Number_Mobile_Home`` - Home mobile number. (Text)
* ``Number_Mobile_Work`` - Work mobile number. (Text)
.. attribute:: Value
Actual value, corresponding type to Type field.
.. attribute:: PictureType
Type of picture which is stored in Value field (only for Picture fields).
.. _file_obj:
File Object
-----------
File is a dictionary consisting of following fields:
.. attribute:: Used
Number of bytes used by this file.
.. attribute:: Name
File name.
.. attribute:: Folder
Boolean value indicating whether this is a folder.
.. attribute:: Level
Depth of file on the filesystem.
.. attribute:: Type
File type, one of:
* ``Other``
* ``Java_JAR``
* ``Image_JPG``
* ``Image_BMP``
* ``Image_GIF``
* ``Image_PNG``
* ``Image_WBMP``
* ``Video_3GP``
* ``Sound_AMR``
* ``Sound_NRT`` - DCT4 binary format
* ``Sound_MIDI``
* ``MMS``
.. attribute:: ID_FullName
Full file name including path.
.. attribute:: Buffer
Content of the file.
.. attribute:: Modified
Timestamp of last change
.. attribute:: Protected
Boolean value indicating whether file is protected (DRM).
.. attribute:: ReadOnly
Boolean value indicating whether file is read only.
.. attribute:: Hidden
Boolean value indicating whether file is hidden.
.. attribute:: System
Boolean value indicating whether file is system.
.. attribute:: Pos
Current poosition of file upload
.. attribute:: Finished
Boolean value indicating completed file transfer.
Example::
FILE = {
'ID_FullName': PATH,
'Name': os.path.basename(PATH)
'Buffer': data,
'Protected': 0,
'ReadOnly': 0,
'Hidden': 0,
'System': 0,
'Folder': 0,
'Level': 0,
'Type': 'Other',
'Finished': 0,
'Pos': 0,
}
|