Skip to content

Instantly share code, notes, and snippets.

@olopsman
Last active October 2, 2019 10:06
Show Gist options
  • Save olopsman/eb01e178d157cc2ef67330c58965d671 to your computer and use it in GitHub Desktop.
Save olopsman/eb01e178d157cc2ef67330c58965d671 to your computer and use it in GitHub Desktop.
Apex GetPerson Class
public class GetPerson {
public String name {get;set;}
public Integer age {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