Type alias ClaimIntegrationPrivateParamsType<T>

ClaimIntegrationPrivateParamsType<T>: T extends "password"
    ? {
        password: string;
    }
    : T extends "codes"
        ? {
            codes: string[];
            seedCode: string;
        }
        : T extends "whitelist"
            ? {
                list?: iAddressList;
                listId?: string;
            }
            : T extends OauthAppName
                ? {
                    ids?: string[];
                    usernames?: string[];
                }
                : {}

Private params are params that are not visible to the public. For example, the password for a claim code.

Type Parameters