HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/devs.lapieza.net/vendor/mindee/mindee/src/Input/
Upload File :
Current File : /var/www/devs.lapieza.net/vendor/mindee/mindee/src/Input/WorkflowOptions.php
<?php

namespace Mindee\Input;

/**
 * Handles options tied to Workflows.
 */
class WorkflowOptions extends CommonOptions
{
    /**
     * @var string|null Alias to give to the document.
     */
    public ?string $alias;

    /**
     * @var string|null Priority to give to the document.
     */
    public ?string $priority;

    /**
     * @var string|null A unique, encrypted URL for accessing the document validation interface without requiring
     * authentication.
     */
    public ?string $publicUrl;

    /**
     * @param string|null $alias       Alias for the document.
     * @param string|null $priority    Priority for the document.
     * @param boolean     $fullTextOcr Whether to retrieve the full ocr text.
     * @param string|null $publicUrl   Priority for the document.
     */
    public function __construct(
        ?string $alias = null,
        ?string $priority = null,
        bool $fullTextOcr = false,
        ?string $publicUrl = null
    ) {
        parent::__construct($fullTextOcr);
        $this->alias = $alias;
        $this->priority = $priority;
        $this->publicUrl = $publicUrl;
    }
}