Advertisement
gullinbursti

ContactUserVO.dictionary

Oct 31st, 2014
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. :: ContactUserVO ::
  2.     .userID         int(id)         : ""
  3.     .username       "username"      : ""
  4.     .avatarPrefix       "avatar_url"        : ""
  5.     .firstName      "f_name"        : ""
  6.     .lastName       "l_name"        : ""
  7.     .fullName       "f_name+l_name"     : ""
  8.     .fullName       "extern_name"       : ""
  9.     .email          "email"         : ""    >>  .mobileNumber = @"";
  10.     .rawNumber      "phone"         : ""    >>  .email = @"";
  11.     .mobileNumber       "frmt(.rawNumber)"  : ""
  12.     .avatarData     d(image)        : ""
  13.     .isSMSAvailable     b(len(.mn] > 0))    : ""   
  14.     .invitedDate        ts("invited")       : ""
  15.     .avatarImage        img(avatarData)     : ""
  16.     .contactType        enum(tr.altID==mn)  : ""
  17.  
  18.  
  19. :: TrivialUserVO ::
  20.     .id     : 0             //vo.isSMSAvailable ? vo.mobileNumber : vo.email,
  21.     .username   : vo.fullName,
  22.     .img_url        : vo.avatarPrefix,
  23.     .alt_id     : (vo.isSMSAvailable) ? vo.mobileNumber : vo.email
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement