JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "C2CSubMerchantApiCredentials.php"

Full Path: /var/www/laravel_filter/vendor/iyzico/iyzipay-php/src/Iyzipay/Model/C2CSubMerchantApiCredentials.php
File size: 499 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Iyzipay\Model;

class C2CSubMerchantApiCredentials {
    private string $salt;
    private string $secretKey;

    public function getSalt(): ?string {
        return $this->salt ?? null;
    }

    public function setSalt(string $salt): void {
        $this->salt = $salt;
    }

    public function getSecretKey(): ?string {
        return $this->secretKey ?? null;
    }

    public function setSecretKey(string $secretKey): void {
        $this->secretKey = $secretKey;
    }
}