Created
March 24, 2022 23:56
-
-
Save gitmatheus/c4e943120dcac6259a24f2e12de534d1 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 interface IFieldReader { | |
Object getFieldValue(SObject record, String fieldName); | |
SObject getFieldRecord(SObject record, String fieldName); | |
List<SObject> getFieldRecords(SObject record, String fieldName); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment