FLOW_CheckTriggerBypassed.DTO_Request
Class
apex
global inherited sharing class FLOW_CheckTriggerBypassed.DTO_RequestA DTO indicating what action has been bypassed
Since: 1.0
Example:
apex
DTO_Request request = new DTO_Request();
request.name = 'Account';
request.bypassType = 'OBJECT_NAME';Fields
| Field | Description |
|---|---|
| global String bypassType | The type of bypass: either CLASS_NAME or OBJECT_NAME. |
| global String name | The API name of the trigger action class or SObject to check bypass status for. |
Field Details
bypassType
apex
@InvocableVariable(description='Must be either "CLASS_NAME" or "OBJECT_NAME"' label='Bypass Type') global String bypassTypeType: String
The type of bypass: either CLASS_NAME or OBJECT_NAME.
Since: 1.0
name
apex
@InvocableVariable(required=true description='API Name of the trigger action class nane, or SObject API Name' label='Item Name') global String nameType: String
The API name of the trigger action class or SObject to check bypass status for.
Since: 1.0