MonoCloud Management SDK
    Preparing search index...

    Interface PatchSignUpCustomFieldRequest

    Patch Sign-Up Custom Field Request: Used to update a sign-up custom field configuration.

    PatchSignUpCustomFieldRequest

    interface PatchSignUpCustomFieldRequest {
        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.

    PatchSignUpCustomFieldRequest

    enabled?: boolean

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

    PatchSignUpCustomFieldRequest

    label?: string

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

    PatchSignUpCustomFieldRequest

    required?: boolean

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

    PatchSignUpCustomFieldRequest

    value_type?: ValueTypes

    The data type of the claim value.

    PatchSignUpCustomFieldRequest