Skip to content

FLOW_CheckTriggerBypassed.DTO_Request

Class

apex
global inherited sharing class FLOW_CheckTriggerBypassed.DTO_Request

A 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

FieldDescription
global String bypassTypeThe type of bypass: either CLASS_NAME or OBJECT_NAME.
global String nameThe 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 bypassType

Type: 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 name

Type: String

The API name of the trigger action class or SObject to check bypass status for.

Since: 1.0