Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-inventory-api
Api
Data
SourceCarrierLinkInterface.php
Go to the documentation of this file.
1
<?php
6
declare(strict_types=1);
7
8
namespace
Magento\InventoryApi\Api\Data
;
9
17
interface
SourceCarrierLinkInterface
extends
\Magento\Framework\Api\ExtensibleDataInterface
18
{
22
const
CARRIER_CODE
=
'carrier_code'
;
23
const
POSITION
=
'position'
;
24
const
SOURCE_CODE
=
'source_code'
;
32
public
function
getCarrierCode
(): ?string;
33
40
public
function
setCarrierCode
(?
string
$carrierCode): void;
41
47
public
function
getPosition
(): ?int;
48
55
public
function
setPosition
(?
int
$position): void;
56
62
public
function
getExtensionAttributes
(): ?\
Magento
\InventoryApi\Api\Data\SourceCarrierLinkExtensionInterface;
63
70
public
function
setExtensionAttributes
(
71
\
Magento
\InventoryApi\Api\Data\SourceCarrierLinkExtensionInterface
$extensionAttributes
72
): void;
73
}
Magento\InventoryApi\Api\Data\SourceCarrierLinkInterface\CARRIER_CODE
const CARRIER_CODE
Definition:
SourceCarrierLinkInterface.php:22
Magento\InventoryApi\Api\Data\SourceCarrierLinkInterface\POSITION
const POSITION
Definition:
SourceCarrierLinkInterface.php:23
Magento\InventoryApi\Api\Data\SourceCarrierLinkInterface\setExtensionAttributes
setExtensionAttributes(\Magento\InventoryApi\Api\Data\SourceCarrierLinkExtensionInterface $extensionAttributes)
Magento\InventoryApi\Api\Data\SourceCarrierLinkInterface\setPosition
setPosition(?int $position)
Magento\InventoryApi\Api\Data
Definition:
SourceCarrierLinkInterface.php:8
$extensionAttributes
$extensionAttributes
Definition:
payment.php:22
Magento
Magento\InventoryApi\Api\Data\SourceCarrierLinkInterface\getExtensionAttributes
getExtensionAttributes()
Magento\InventoryApi\Api\Data\SourceCarrierLinkInterface\getPosition
getPosition()
Magento\Framework\Api\ExtensibleDataInterface
Definition:
ExtensibleDataInterface.php:15
Magento\InventoryApi\Api\Data\SourceCarrierLinkInterface
Definition:
SourceCarrierLinkInterface.php:17
Magento\InventoryApi\Api\Data\SourceCarrierLinkInterface\setCarrierCode
setCarrierCode(?string $carrierCode)
Magento\InventoryApi\Api\Data\SourceCarrierLinkInterface\getCarrierCode
getCarrierCode()
Magento\InventoryApi\Api\Data\SourceCarrierLinkInterface\SOURCE_CODE
const SOURCE_CODE
Definition:
SourceCarrierLinkInterface.php:24