-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathState.php
More file actions
62 lines (54 loc) · 1.11 KB
/
State.php
File metadata and controls
62 lines (54 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* State
*
* PHP version 7.4
*
* @category Class
* @package Databox
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* Static OpenAPI document of Push API resource
*
* Push API resources Open API documentation
*
* The version of the OpenAPI document: 0.4.0
* Generated by: https://openapi-generator.tech
* Generator version: 7.6.0
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
namespace Databox\Model;
use \Databox\ObjectSerializer;
/**
* State Class Doc Comment
*
* @category Class
* @package Databox
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class State
{
/**
* Possible values of this enum
*/
public const DOWN = 'DOWN';
public const UP = 'UP';
/**
* Gets allowable values of the enum
* @return string[]
*/
public static function getAllowableEnumValues()
{
return [
self::DOWN,
self::UP
];
}
}