Provide a brief description about the API method. What does it do? When to use it, etc.
Replace the text below with the actual signature of the method. Be sure to include return type, params, and types for params
Map<Id, Opportunity> GetOpsWithContacts(
Set<Id> opIds,
Set<String> oppTypesToExclude,
Set<String> additionalOppFieldsToQuery)
List out all of the parameters for the method. Be sure to provide a description of each
Parameters
- opIds - Set of Opportunity IDs
- oppTypesToExclude - Set of Opportunity Types. Opportunities having one of these Opportunity Types won't be included in the return value
- additionalOppFieldsToQuery - Set of Opportunity field names that will be included in the Opportunities in the return value
Returns
Map of all opportunties with related OpportunityContactRole records
Comments
0 comments
Please sign in to leave a comment.