HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/vhost/disk-apps/magento.bikenow.co/vendor/klarna/module-kp/Api/Data/AddressInterface.php
<?php
/**
 * This file is part of the Klarna KP module
 *
 * (c) Klarna Bank AB (publ)
 *
 * For the full copyright and license information, please view the NOTICE
 * and LICENSE files that were distributed with this source code.
 */

namespace Klarna\Kp\Api\Data;

interface AddressInterface extends ApiObjectInterface
{
    /**
     * Set title. Possible values Mr or Mrs
     *
     * @param string $title
     */
    public function setTitle($title);

    /**
     * Set given name. [REQUIRED field]
     *
     * @param string $givenName
     */
    public function setGivenName($givenName);

    /**
     * Set family name. [REQUIRED field]
     *
     * @param string $familyName
     */
    public function setFamilyName($familyName);

    /**
     * Set e-mail address. [REQUIRED field]
     *
     * @param string $email
     */
    public function setEmail($email);

    /**
     * Set phone number.
     *
     * @param string $phone
     */
    public function setPhone($phone);

    /**
     * Set street address, first line. [REQUIRED field]
     *
     * @param string $streetAddress
     */
    public function setStreetAddress($streetAddress);

    /**
     * Set street address, second line.
     *
     * @param string $streetAddress
     */
    public function setStreetAddress2($streetAddress);

    /**
     * Set city. [REQUIRED field]
     *
     * @param string $city
     */
    public function setCity($city);

    /**
     * Set region
     *
     * @param string $region
     */
    public function setRegion($region);

    /**
     * Set postal/post code. [REQUIRED field]
     *
     * @param string $postalCode
     */
    public function setPostalCode($postalCode);

    /**
     * Set country(ISO 3166 alpha+2). [REQUIRED field]
     *
     * @param string $country
     */
    public function setCountry($country);
}