Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 1.53 KB

File metadata and controls

41 lines (29 loc) · 1.53 KB

WooCommerceSetting

Properties

Name Type Description Notes
id String A unique identifier for the setting. [optional]
groupId String An identifier for the group this setting belongs to. [optional]
label String A human readable label for the setting used in interfaces. [optional]
description String A human readable description for the setting used in interfaces. [optional]
value String Setting value. [optional]
_default String Default value for the setting. [optional]
tip String Additional help text shown to the user about the setting. [optional]
placeholder String Placeholder text to be displayed in text inputs. [optional]
type TypeEnum Type of setting. [optional]
options Object Array of options (key value pairs) for inputs such as select, multiselect, and radio buttons. [optional]

Enum: TypeEnum

Name Value
TEXT "text"
EMAIL "email"
NUMBER "number"
COLOR "color"
PASSWORD "password"
TEXTAREA "textarea"
SELECT "select"
MULTISELECT "multiselect"
RADIO "radio"
IMAGE_WIDTH "image_width"
CHECKBOX "checkbox"
UNKNOWN_DEFAULT_OPEN_API "unknown_default_open_api"