paygreenjs
    Preparing search index...

    Interface ParamsType

    interface ParamsType {
        buyer?: BuyerParamsType;
        display?: {
            authentication?: "inline" | "modal";
            cardIcon?: boolean;
            cvvIcon?: boolean;
            hideStatusMessages?: boolean;
        };
        displayAuthentication?: "inline"
        | "modal";
        displayCardLogo?: boolean;
        displayCvvIcon?: boolean;
        instrument?: InstrumentParamsType;
        lang?: string;
        mode: "tokenizer" | "instrument" | "payment";
        modeOptions?: { authorizedInstrument?: boolean; shopId?: string };
        paymentMethod?: string;
        paymentOrder?: { id: string; objectSecret: string };
        publicKey: string;
        style?: StyleIframeType;
        token?: string;
    }

    Hierarchy

    • Omit<
          ClientParamsType,
          "instrument"
          | "buyer"
          | "paymentOrderID"
          | "objectSecret",
      >
      • ParamsType
    Index

    Properties

    display?: {
        authentication?: "inline" | "modal";
        cardIcon?: boolean;
        cvvIcon?: boolean;
        hideStatusMessages?: boolean;
    }
    displayAuthentication?: "inline" | "modal"
    displayCardLogo?: boolean
    displayCvvIcon?: boolean
    lang?: string
    mode: "tokenizer" | "instrument" | "payment"
    modeOptions?: { authorizedInstrument?: boolean; shopId?: string }
    paymentMethod?: string
    paymentOrder?: { id: string; objectSecret: string }
    publicKey: string
    token?: string