/home/kueuepay/public_html/vendor/spatie/ignition/src/Solutions/OpenAi/OpenAiPromptViewModel.php
<?php

namespace Spatie\Ignition\Solutions\OpenAi;

class OpenAiPromptViewModel
{
    public function __construct(
        protected string $file,
        protected string $exceptionMessage,
        protected string $exceptionClass,
        protected string $snippet,
        protected string $line,
        protected string|null $applicationType = null,
    ) {
    }

    public function file(): string
    {
        return $this->file;
    }

    public function line(): string
    {
        return $this->line;
    }

    public function snippet(): string
    {
        return $this->snippet;
    }

    public function exceptionMessage(): string
    {
        return $this->exceptionMessage;
    }

    public function exceptionClass(): string
    {
        return $this->exceptionClass;
    }

    public function applicationType(): string|null
    {
        return $this->applicationType;
    }
}
Authentication

Authentication

To access the Kueue Pay Developer API, you’ll need an API key. You can obtain your API key by logging in to your Kueue Pay merchant account and navigating to the API section. Collect Client ID , Secret ID & Merchant ID Carefully. Keep your API key confidential and do not share it publicly.

If you don't have any merchant account please Register to continue