Skip to content

getSectionValidation(): TSectionValidation

The getSectionValidation method allows to retrieve a validation for the basket summary section.

Returned value

A returned value has a type of TSectionValidation which represents the TSectionValidation object.

Example

In this example we make a basketOverallApi call to retrieve a validation for the basket summary section.

useStorefront(async ({ eventBus, getApi }) => {
    eventBus.on('basket.initialized', async () => {
        const basketOverallApi = await getApi('basketOverallApi');

        const sectionValidation = basketOverallApi.getSectionValidation();

        if (!sectionValidation.isValid) {
            console.log('summary section validation message:', sectionValidation.validationMessage);
        }
    });
});

Basket Overall API methods reference

Objects reference