Skip to content

Instantly share code, notes, and snippets.

@olopsman
Last active October 2, 2019 10:19
Show Gist options
  • Save olopsman/f672e3bfe8dfe7281b51384bc5c75798 to your computer and use it in GitHub Desktop.
Save olopsman/f672e3bfe8dfe7281b51384bc5c75798 to your computer and use it in GitHub Desktop.
Apex Get Person Class Updated
public class GetPerson {
public String x_id {get;set;}
public String name {get;set;}
public Integer age {get;set;}
public List<String> kids {get;set;}
public Car car {get;set;}
public class Car {
public String model {get;set;}
public String year {get;set;}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment