-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(specs): add runSource endpoint (generated)
algolia/api-clients-automation#3453 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Pierre Millot <pierre.millot@algolia.com>
- Loading branch information
1 parent
fd41bc8
commit 5df3fdf
Showing
4 changed files
with
670 additions
and
0 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
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,35 @@ | ||
<?php | ||
|
||
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. | ||
|
||
namespace Algolia\AlgoliaSearch\Model\Ingestion; | ||
|
||
/** | ||
* EntityType Class Doc Comment. | ||
* | ||
* @category Class | ||
* | ||
* @description Type of entity to update. | ||
*/ | ||
class EntityType | ||
{ | ||
/** | ||
* Possible values of this enum. | ||
*/ | ||
public const PRODUCT = 'product'; | ||
|
||
public const COLLECTION = 'collection'; | ||
|
||
/** | ||
* Gets allowable values of the enum. | ||
* | ||
* @return string[] | ||
*/ | ||
public static function getAllowableEnumValues() | ||
{ | ||
return [ | ||
self::PRODUCT, | ||
self::COLLECTION, | ||
]; | ||
} | ||
} |
Oops, something went wrong.