Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
EstimateAddressInterface.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Quote\Api\Data;
7 
14 {
18  const KEY_COUNTRY_ID = 'country_id';
19 
20  const KEY_REGION_ID = 'region_id';
21 
22  const KEY_REGION = 'region';
23 
24  const KEY_POSTCODE = 'postcode';
25 
33  public function getRegion();
34 
41  public function setRegion($region);
42 
48  public function getRegionId();
49 
56  public function setRegionId($regionId);
57 
63  public function getCountryId();
64 
71  public function setCountryId($countryId);
72 
78  public function getPostcode();
79 
86  public function setPostcode($postcode);
87 
93  public function getExtensionAttributes();
94 
101  public function setExtensionAttributes(
102  \Magento\Quote\Api\Data\EstimateAddressExtensionInterface $extensionAttributes
103  );
104 }
setExtensionAttributes(\Magento\Quote\Api\Data\EstimateAddressExtensionInterface $extensionAttributes)
$extensionAttributes
Definition: payment.php:22