-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
344 additions
and
2 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
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
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,86 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* This file is part of the MultiFlexi package | ||
* | ||
* https://multiflexi.eu/ | ||
* | ||
* (c) Vítězslav Dvořák <http://vitexsoftware.com> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
/** | ||
* This is an example of using OAuth2 Application Flow in a specification to describe security to your API. | ||
* The version of the OpenAPI document: 1.1.0 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git. | ||
*/ | ||
|
||
/** | ||
* NOTE: This class is auto generated by the openapi generator program. | ||
* https://github.com/openapitools/openapi-generator. | ||
*/ | ||
|
||
namespace MultiFlexi\Api\Model; | ||
|
||
use MultiFlexi\Api\BaseModel; | ||
|
||
/** | ||
* JobsStatus. | ||
* | ||
* @author OpenAPI Generator team | ||
* | ||
* @see https://github.com/openapitools/openapi-generator | ||
*/ | ||
class JobsStatus extends BaseModel | ||
{ | ||
/** | ||
* @var string Models namespace. | ||
* Can be required for data deserialization when model contains referenced schemas. | ||
*/ | ||
protected const MODELS_NAMESPACE = '\MultiFlexi\Api\Model'; | ||
|
||
/** | ||
* @var string Constant with OAS schema of current class. | ||
* Should be overwritten by inherited class. | ||
*/ | ||
protected const MODEL_SCHEMA = <<<'SCHEMA' | ||
{ | ||
"properties" : { | ||
"timestamp" : { | ||
"type" : "string", | ||
"format" : "date-time", | ||
"example" : "2023-10-01T12:00:00Z" | ||
}, | ||
"successful_jobs" : { | ||
"type" : "integer", | ||
"description" : "Successful jobs" | ||
}, | ||
"failed_jobs" : { | ||
"type" : "integer", | ||
"description" : "Failed jobs" | ||
}, | ||
"incomplete_jobs" : { | ||
"type" : "integer", | ||
"description" : "Incomplete jobs" | ||
}, | ||
"total_applications" : { | ||
"type" : "integer", | ||
"description" : "Total applications" | ||
}, | ||
"repeated_jobs" : { | ||
"type" : "integer", | ||
"description" : "Repeated jobs" | ||
}, | ||
"total_jobs" : { | ||
"type" : "integer", | ||
"description" : "Total jobs" | ||
} | ||
} | ||
} | ||
SCHEMA; | ||
} |
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
Oops, something went wrong.