Guest User

Untitled

a guest
Jul 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. {
  2. "result":{
  3. "birthday_at":"0000-00-00",
  4. "first_name":"Serhiy",
  5. "level":5,
  6. "last_name":"Radkivskiy",
  7. "gender":0
  8. },
  9. "cmd":"INFO",
  10. "service":{
  11. "code":0,
  12. "error_desc":""
  13. }
  14. }
  15.  
  16. public class UserInfo
  17. {
  18. public Date birthday_at;
  19. public String first_name;
  20. public String last_name;
  21. public int level;
  22. public int gender;
  23. }
  24.  
  25. import com.adobe.serialization.json
  26.  
  27. var obj:Object = JSON.decode( jsonString );
  28. var user:UserInfo = new UserInfo();
  29.  
  30. for ( var prop:String in obj )
  31. user[prop] = obj[prop];
Add Comment
Please, Sign In to add comment