-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from iranianpep/master
Add ActivitiesSummaries endpoint
- Loading branch information
Showing
4 changed files
with
39 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
/vendor/ | ||
/.idea/ | ||
composer.lock | ||
/build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Activities Summaries | ||
|
||
> Get a list of daily activity summaries reported by the data sources. | ||
For more information on the Activities Summaries endpoint see the [official docs](https://reference.humanapi.co/#activity-summaries). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
namespace Choccybiccy\HumanApi\Endpoint; | ||
|
||
/** | ||
* Class ActivitiesSummaries | ||
* @package Choccybiccy\HumanApi\Endpoint | ||
*/ | ||
class ActivitiesSummaries extends PeriodicEndpoint | ||
{ | ||
|
||
/** | ||
* @var string | ||
*/ | ||
protected $type = "activities/summaries"; | ||
} |