Skip to main content

Type Alias: MarkOptionByBlockNameAndOptionCode()

MarkOptionByBlockNameAndOptionCode = (blockName, optionCode) => void

Function

Function signature for marking an option by referencing its block name and option code.

This convenience function allows for selecting options using their business identifiers rather than internal IDs. It's particularly useful for integrations and automated configurations where human-readable references are preferred over technical identifiers.

Parameters

blockName

string

The display name of the block containing the option

optionCode

string

The configuration code of the option to select

Returns

void

Promise that resolves when the selection is complete

Example

// Select the "Oak" finish in the "TableTop" block
markOptionByBlockNameAndOptionCode(
"TableTop",
"FINISH-OAK"
);