FLOW_GetPicklistValues.DTO_Request
Class
apex
global inherited sharing class FLOW_GetPicklistValues.DTO_RequestRequest DTO containing the information required to retrieve picklist values.
Since: 1.0
Fields
| Field | Description |
|---|---|
| global String objectApiName | The object API name for the SObject whose picklist values are being retrieved. |
| global String recordTypeApiName | The Record Type API name for which to retrieve specifically configured picklist values. |
Field Details
objectApiName
apex
@InvocableVariable(required=true description='The SObject Api Name' label='Object Name') global String objectApiNameType: String
The object API name for the SObject whose picklist values are being retrieved.
Since: 1.0
Example:
apex
String value = instance.objectApiName;recordTypeApiName
apex
@InvocableVariable(required=true description='The Record Type Api Name' label='Record Type Name') global String recordTypeApiNameType: String
The Record Type API name for which to retrieve specifically configured picklist values.
Since: 1.0
Example:
apex
String value = instance.recordTypeApiName;