Ask AI is now on the home page — ask a question and get a sourced answer from the Ory docs. You'll also find it in the bottom-right corner of any page.

Skip to main content

OryNodeConsentScopeCheckboxProps

type OryNodeConsentScopeCheckboxProps = {
attributes: UiNodeInputAttributes
inputProps: {
checked: boolean
disabled?: boolean
name: string
value: string
}
node: UiNode
onCheckedChange: (checked: boolean) => void
}

Properties

attributes

attributes: UiNodeInputAttributes

inputProps

inputProps: {
checked: boolean;
disabled?: boolean;
name: string;
value: string;
};
NameType
checkedboolean
disabled?boolean
namestring
valuestring

node

node: UiNode

onCheckedChange()

onCheckedChange: (checked: boolean) => void;

Parameters

ParameterType
checkedboolean

Returns

void