Created
March 28, 2015 22:45
-
-
Save msrivastav13/19ecb7c191d3d69389b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class LinkedInParser{ | |
public String emailAddress{get;set;} //[email protected] | |
public String id{get;set;} //k4UiLk0S8c | |
public cls_languages languages{get;set;} | |
public cls_location location{get;set;} | |
public Integer numConnections{get;set;} //334 | |
public String pictureUrl{get;set;} //https://media.licdn.com/mpr/mprx/0__HjzfUfekIOzW4-Rh2LzFgge5f3H7HlUWHWUWaIe5uiW742F7MLRG7EWFI7H7d2RdHLzT4dd2Ipd22OUWU4dF7kLWIpe22ecWU492mlHCodX6VPwLomZuVxJdY6Z5206h4yJwp-201P | |
public cls_publications publications{get;set;} | |
public cls_skills skills{get;set;} | |
public String summary{get;set;} // | |
public cls_certifications certifications{get;set;} | |
public class cls_languages { | |
public Integer total{get;set;} //3 | |
public cls_values[] values{get;set;} | |
} | |
public class cls_values { | |
public Integer id{get;set;} //552363068 | |
public cls_skill skill{get;set;} | |
} | |
public class cls_language { | |
public String name{get;set;} //English | |
} | |
public class cls_location { | |
public cls_country country{get;set;} | |
public String name{get;set;} //Dallas/Fort Worth Area | |
} | |
public class cls_country { | |
public String code{get;set;} //us | |
} | |
public class cls_publications { | |
public Integer total{get;set;} //3 | |
public cls_values[] values{get;set;} | |
} | |
public class cls_date { | |
public Integer day{get;set;} //13 | |
public Integer month{get;set;} //10 | |
public Integer year{get;set;} //2014 | |
} | |
public class cls_skills { | |
public Integer total{get;set;} //36 | |
public cls_values[] values{get;set;} | |
} | |
public class cls_skill { | |
public String name{get;set;} //Force.com | |
} | |
public class cls_certs{ | |
public String name{get;set;} //Force.com | |
public String Id{get;set;} | |
} | |
public class cls_certifications { | |
public Integer total{get;set;} //8 | |
public cls_certs[] values{get;set;} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment