Variable productDetailsSchemaConst

productDetailsSchema: ZodObject<{
    description: ZodOptional<ZodString>;
    imageURI: ZodOptional<ZodString>;
    name: ZodString;
    successText: ZodOptional<ZodString>;
    successURL: ZodOptional<ZodString>;
}, "strip", ZodTypeAny, {
    description?: string;
    imageURI?: string;
    name: string;
    successText?: string;
    successURL?: string;
}, {
    description?: string;
    imageURI?: string;
    name: string;
    successText?: string;
    successURL?: string;
}> = ...

Type declaration

  • description: ZodOptional<ZodString>

    The description of the checkout product.

  • imageURI: ZodOptional<ZodString>

    The image URI of the checkout product. Can be an URL, can be a data URI (e.g. inline Base64).

  • name: ZodString

    The name of the checkout product.

  • successText: ZodOptional<ZodString>

    Text shows on the success button in the final screen of the checkout.

  • successURL: ZodOptional<ZodString>

    The URL to redirect to when the success button is clicked.

Type declaration

  • Optional description?: string

    The description of the checkout product.

  • Optional imageURI?: string

    The image URI of the checkout product. Can be an URL, can be a data URI (e.g. inline Base64).

  • name: string

    The name of the checkout product.

  • Optional successText?: string

    Text shows on the success button in the final screen of the checkout.

  • Optional successURL?: string

    The URL to redirect to when the success button is clicked.

Type declaration

  • Optional description?: string

    The description of the checkout product.

  • Optional imageURI?: string

    The image URI of the checkout product. Can be an URL, can be a data URI (e.g. inline Base64).

  • name: string

    The name of the checkout product.

  • Optional successText?: string

    Text shows on the success button in the final screen of the checkout.

  • Optional successURL?: string

    The URL to redirect to when the success button is clicked.

Generated using TypeDoc