Interface CodeGenQueryParams

interface CodeGenQueryParams {
    claimId?: string;
    client_id: string;
    description?: string;
    expectAttestationsPresentations?: boolean;
    expectVerifySuccess?: boolean;
    hideIfAlreadyClaimed?: boolean;
    image?: string;
    name?: string;
    otherSignIns?: (
        | "discord"
        | "github"
        | "google"
        | "twitter")[];
    ownershipRequirements?: AssetConditionGroup<NumberType>;
    redirect_uri?: string;
    scope?: string;
    state?: string;
}

Properties

claimId?: string
client_id: string
description?: string
expectAttestationsPresentations?: boolean
expectVerifySuccess?: boolean
hideIfAlreadyClaimed?: boolean
image?: string
name?: string
otherSignIns?: (
    | "discord"
    | "github"
    | "google"
    | "twitter")[]
ownershipRequirements?: AssetConditionGroup<NumberType>
redirect_uri?: string
scope?: string
state?: string