MonoCloud Management SDK
    Preparing search index...

    Interface SignUpOptions

    Sign-up Options Response: Represents the sign-up configuration.

    SignUpOptions

    interface SignUpOptions {
        allowlist: SignUpRestrictionsOptions;
        blocklist: SignUpRestrictionsOptions;
        privacy_url?: string | null;
        require_explicit_user_agreement: boolean;
        show_terms_and_privacy_policy: boolean;
        terms_url?: string | null;
    }
    Index

    Properties

    Allowlist of identifiers permitted during sign-up.

    SignUpOptions

    Blocklist of identifiers disallowed during sign-up.

    SignUpOptions

    privacy_url?: string | null

    The URL of the Privacy Policy shown during sign-up.

    SignUpOptions

    require_explicit_user_agreement: boolean

    Require the user to explicitly agree to the Terms and/or Privacy Policy.

    SignUpOptions

    show_terms_and_privacy_policy: boolean

    Show Terms and/or Privacy Policy on the sign-up screen.

    SignUpOptions

    terms_url?: string | null

    The URL of the Terms of Service shown during sign-up.

    SignUpOptions