Skip to content

Commit 9ba4a9f

Browse files
author
Cari Spruiell
committed
Merge remote-tracking branch 'api/MAGETWO-52340-Gift-Message' into pull-request
2 parents 745c3fd + fa17685 commit 9ba4a9f

17 files changed

+74
-5
lines changed

app/code/Magento/Customer/Api/CustomerRepositoryInterface.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
interface CustomerRepositoryInterface
1414
{
1515
/**
16-
* Create customer.
16+
* Create or update a customer.
1717
*
1818
* @api
1919
* @param \Magento\Customer\Api\Data\CustomerInterface $customer
@@ -38,7 +38,7 @@ public function save(\Magento\Customer\Api\Data\CustomerInterface $customer, $pa
3838
public function get($email, $websiteId = null);
3939

4040
/**
41-
* Retrieve customer.
41+
* Get customer by customer ID.
4242
*
4343
* @api
4444
* @param int $customerId
@@ -51,6 +51,10 @@ public function getById($customerId);
5151
/**
5252
* Retrieve customers which match a specified criteria.
5353
*
54+
* This call returns an array of objects, but detailed information about each object’s attributes might not be
55+
* included. See http://devdocs.magento.com/codelinks/attributes.html#CustomerRepositoryInterface to determine
56+
* which call to use to get detailed information about all attributes for an object.
57+
*
5458
* @api
5559
* @param \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
5660
* @return \Magento\Customer\Api\Data\CustomerSearchResultsInterface

app/code/Magento/Customer/Api/GroupRepositoryInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ public function getById($id);
4141
* The list of groups can be filtered to exclude the NOT_LOGGED_IN group using the first parameter and/or it can
4242
* be filtered by tax class.
4343
*
44+
* This call returns an array of objects, but detailed information about each object’s attributes might not be
45+
* included. See http://devdocs.magento.com/codelinks/attributes.html#GroupRepositoryInterface to determine
46+
* which call to use to get detailed information about all attributes for an object.
47+
*
4448
* @api
4549
* @param \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
4650
* @return \Magento\Customer\Api\Data\GroupSearchResultsInterface

app/code/Magento/Eav/Api/AttributeSetRepositoryInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ interface AttributeSetRepositoryInterface
1515
/**
1616
* Retrieve list of Attribute Sets
1717
*
18+
* This call returns an array of objects, but detailed information about each object’s attributes might not be
19+
* included. See http://devdocs.magento.com/codelinks/attributes.html#AttributeSetRepositoryInterface to determine
20+
* which call to use to get detailed information about all attributes for an object.
21+
*
1822
* @param \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
1923
* @return \Magento\Eav\Api\Data\AttributeSetSearchResultsInterface
2024
*/

app/code/Magento/Quote/Api/CartRepositoryInterface.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ public function get($cartId);
2323
/**
2424
* Enables administrative users to list carts that match specified search criteria.
2525
*
26+
* This call returns an array of objects, but detailed information about each object’s attributes might not be
27+
* included. See http://devdocs.magento.com/codelinks/attributes.html#CartRepositoryInterface to determine
28+
* which call to use to get detailed information about all attributes for an object.
29+
*
30+
*
2631
* @param \Magento\Framework\Api\SearchCriteria $searchCriteria
2732
* @return \Magento\Quote\Api\Data\CartSearchResultsInterface
2833
*/

app/code/Magento/Quote/Api/GuestPaymentMethodManagementInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ public function get($cartId);
3535
/**
3636
* List available payment methods for a specified shopping cart.
3737
*
38+
* This call returns an array of objects, but detailed information about each object’s attributes might not be
39+
* included. See http://devdocs.magento.com/codelinks/attributes.html#GuestPaymentMethodManagementInterface to
40+
* determine which call to use to get detailed information about all attributes for an object.
41+
*
3842
* @param string $cartId The cart ID.
3943
* @return \Magento\Quote\Api\Data\PaymentMethodInterface[] Array of payment methods.
4044
* @throws \Magento\Framework\Exception\NoSuchEntityException The specified cart does not exist.

app/code/Magento/Quote/Api/PaymentMethodManagementInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ public function get($cartId);
3535
/**
3636
* Lists available payment methods for a specified shopping cart.
3737
*
38+
* This call returns an array of objects, but detailed information about each object’s attributes might not be
39+
* included. See http://devdocs.magento.com/codelinks/attributes.html#PaymentMethodManagementInterface to
40+
* determine which call to use to get detailed information about all attributes for an object.
41+
*
3842
* @param int $cartId The cart ID.
3943
* @return \Magento\Quote\Api\Data\PaymentMethodInterface[] Array of payment methods.
4044
* @throws \Magento\Framework\Exception\NoSuchEntityException The specified cart does not exist.

app/code/Magento/Sales/Api/CreditmemoRepositoryInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ interface CreditmemoRepositoryInterface
1818
/**
1919
* Lists credit memos that match specified search criteria.
2020
*
21+
* This call returns an array of objects, but detailed information about each object’s attributes might not be
22+
* included. See http://devdocs.magento.com/codelinks/attributes.html#CreditmemoRepositoryInterface to
23+
* determine which call to use to get detailed information about all attributes for an object.
24+
*
2125
* @param \Magento\Framework\Api\SearchCriteria $searchCriteria The search criteria.
2226
* @return \Magento\Sales\Api\Data\CreditmemoSearchResultInterface Credit memo search result interface.
2327
*/

app/code/Magento/Sales/Api/InvoiceRepositoryInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ interface InvoiceRepositoryInterface
1616
/**
1717
* Lists invoices that match specified search criteria.
1818
*
19+
* This call returns an array of objects, but detailed information about each object’s attributes might not be
20+
* included. See http://devdocs.magento.com/codelinks/attributes.html#InvoiceRepositoryInterface to
21+
* determine which call to use to get detailed information about all attributes for an object.
22+
*
1923
* @param \Magento\Framework\Api\SearchCriteria $searchCriteria The search criteria.
2024
* @return \Magento\Sales\Api\Data\InvoiceSearchResultInterface Invoice search result interface.
2125
*/

app/code/Magento/Sales/Api/OrderItemRepositoryInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ interface OrderItemRepositoryInterface
1818
/**
1919
* Lists order items that match specified search criteria.
2020
*
21+
* This call returns an array of objects, but detailed information about each object’s attributes might not be
22+
* included. See http://devdocs.magento.com/codelinks/attributes.html#OrderItemRepositoryInterface to
23+
* determine which call to use to get detailed information about all attributes for an object.
24+
*
2125
* @param \Magento\Framework\Api\SearchCriteria $searchCriteria The search criteria.
2226
* @return \Magento\Sales\Api\Data\OrderItemSearchResultInterface Order item search result interface.
2327
*/

app/code/Magento/Sales/Api/OrderRepositoryInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ interface OrderRepositoryInterface
1818
/**
1919
* Lists orders that match specified search criteria.
2020
*
21+
* This call returns an array of objects, but detailed information about each object’s attributes might not be
22+
* included. See http://devdocs.magento.com/codelinks/attributes.html#OrderRepositoryInterface to
23+
* determine which call to use to get detailed information about all attributes for an object.
24+
*
2125
* @param \Magento\Framework\Api\SearchCriteria $searchCriteria The search criteria.
2226
* @return \Magento\Sales\Api\Data\OrderSearchResultInterface Order search result interface.
2327
*/

0 commit comments

Comments
 (0)