Skip to content

Commit

Permalink
LSN-4728 Adds fulfilment_point_timeslots and timeslots clients
Browse files Browse the repository at this point in the history
  • Loading branch information
andrelopez committed Jul 30, 2020
1 parent 027f5f0 commit 2de64d8
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/Sell/FulfilmentPointTimeslotClient.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

namespace LiveStyled\Sell;

use LiveStyled\Client;
use LiveStyled\CrudClient;

class FulfilmentPointTimeslotClient extends Client implements CrudClient
{
protected function getPath()
{
return '/v4/sell/fulfilment_point_timeslots';
}
}
14 changes: 14 additions & 0 deletions src/Sell/TimeslotClient.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

namespace LiveStyled\Sell;

use LiveStyled\Client;
use LiveStyled\CrudClient;

class TimeslotClient extends Client implements CrudClient
{
protected function getPath()
{
return '/v4/sell/timeslots';
}
}

0 comments on commit 2de64d8

Please sign in to comment.