Last active
December 16, 2015 20:19
-
-
Save gcarre/5491474 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 CanonicalDataModel { | |
public List<ObjectDefinition> objects; | |
} | |
public class ObjectDefinition { | |
public String name; | |
public String id; | |
public List<ObjectField> fields; | |
public List<ObjectDefinition> associations; | |
public boolean attachmentType; | |
} | |
public class ObjectField { | |
public String name; | |
public String type; | |
} | |
class CDMService { | |
public CanonicalDataModel loadModel(); | |
public CDMService() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment