This repository was archived by the owner on Oct 24, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 2626 * @method ApiClient setSecret(string $secret = null)
2727 * @method DateTimeDecorator getDeleteAt()
2828 * @method ApiClient setDeleteAt(DateTime $deleteAt = null)
29+ * @method int getAccessTokenValiditySeconds()
30+ * @method ApiClient setAccessTokenValiditySeconds(int $accessTokenValiditySeconds = null)
31+ * @method int getRefreshTokenValiditySeconds()
32+ * @method ApiClient setRefreshTokenValiditySeconds(int $refreshTokenValiditySeconds = null)
2933 */
3034class ApiClient extends JsonObject
3135{
Original file line number Diff line number Diff line change 1616 * @method ApiClientDraft setScope(string $scope = null)
1717 * @method int getDeleteDaysAfterCreation()
1818 * @method ApiClientDraft setDeleteDaysAfterCreation(int $deleteDaysAfterCreation = null)
19+ * @method int getAccessTokenValiditySeconds()
20+ * @method ApiClientDraft setAccessTokenValiditySeconds(int $accessTokenValiditySeconds = null)
21+ * @method int getRefreshTokenValiditySeconds()
22+ * @method ApiClientDraft setRefreshTokenValiditySeconds(int $refreshTokenValiditySeconds = null)
1923 */
2024class ApiClientDraft extends JsonObject
2125{
Original file line number Diff line number Diff line change 1212use Commercetools \Core \Model \ShippingMethod \ShippingMethodCollection ;
1313use Commercetools \Core \Request \AbstractApiRequest ;
1414use Commercetools \Core \Request \ExpandTrait ;
15+ use Commercetools \Core \Request \SortTrait ;
1516use Commercetools \Core \Response \ApiResponseInterface ;
1617use Commercetools \Core \Response \PagedQueryResponse ;
1718use Psr \Http \Message \ResponseInterface ;
2526class ShippingMethodByMatchingLocationGetRequest extends AbstractApiRequest
2627{
2728 use ExpandTrait;
29+ use SortTrait;
2830
2931 protected $ resultClass = ShippingMethodCollection::class;
3032
You can’t perform that action at this time.
0 commit comments