diff --git a/Socialmetrica.package/NitterUser.class/instance/asDictionary.st b/Socialmetrica.package/NitterUser.class/instance/asDictionary.st index e4f537c..225c373 100644 --- a/Socialmetrica.package/NitterUser.class/instance/asDictionary.st +++ b/Socialmetrica.package/NitterUser.class/instance/asDictionary.st @@ -1,7 +1,13 @@ accessing asDictionary + | tweets | + tweets := self messages. ^ { 'profile-card-avatar' -> self profileImageFile fullName. 'profile-card-fullname' -> self name . 'profile-card-username' -> self userName . - 'profile-bio' -> self profileBio } asDictionary \ No newline at end of file + 'profile-bio' -> self profileBio. + 'messages-size' -> tweets size. + 'messages-newest' -> tweets newest created asDate greaseString. + 'messages-oldest' -> tweets oldest created asDate greaseString + } asDictionary \ No newline at end of file