![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-payment/Gateway/Data/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Gateway\Data; /** * Interface AddressAdapterInterface * @api * @since 100.0.2 */ interface AddressAdapterInterface { /** * Get region name * * @return string */ public function getRegionCode(); /** * Get country id * * @return string */ public function getCountryId(); /** * Get street line 1 * * @return string */ public function getStreetLine1(); /** * Get street line 2 * * @return string */ public function getStreetLine2(); /** * Get telephone number * * @return string */ public function getTelephone(); /** * Get postcode * * @return string */ public function getPostcode(); /** * Get city name * * @return string */ public function getCity(); /** * Get first name * * @return string */ public function getFirstname(); /** * Get last name * * @return string */ public function getLastname(); /** * Get middle name * * @return string|null */ public function getMiddlename(); /** * Get customer id * * @return int|null */ public function getCustomerId(); /** * Get billing/shipping email * * @return string */ public function getEmail(); /** * Returns name prefix * * @return string */ public function getPrefix(); /** * Returns name suffix * * @return string */ public function getSuffix(); /** * Get company * * @return string */ public function getCompany(); }