Skip to content

Commit

Permalink
Merge pull request #8 from andrelopez/master
Browse files Browse the repository at this point in the history
LSN-4728 Adds fulfilment_point_timeslots and timeslots clients
  • Loading branch information
tomrutherford-livestyled authored Aug 5, 2020
2 parents 91a2d25 + 2de64d8 commit d8ba61e
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 d8ba61e

Please sign in to comment.