MonoCloud Management SDK
    Preparing search index...

    Interface SignUpCustomField

    Sign-up Custom Field Response: Represents the configuration of a custom field collected during user sign-up.

    SignUpCustomField

    interface SignUpCustomField {
        claim_name: string;
        enabled: boolean;
        label: string;
        required: boolean;
        value_type: ValueTypes;
    }
    Index

    Properties

    claim_name: string

    The claim name under which the value will be stored.

    SignUpCustomField

    enabled: boolean

    Specifies whether this custom field is enabled and shown during sign-up.

    SignUpCustomField

    label: string

    The user-facing label displayed for this field during sign-up.

    SignUpCustomField

    required: boolean

    Specifies whether this custom field is mandatory during sign-up.

    SignUpCustomField

    value_type: ValueTypes

    The data type of the claim value.

    SignUpCustomField