Skip to content

Commit

Permalink
Add Variable is_sensitive and is_inheritable properties
Browse files Browse the repository at this point in the history
  • Loading branch information
pjcdawkins committed Mar 4, 2018
1 parent 7083c38 commit 6a0bed3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Model/Variable.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
* The name of the variable.
* @property-read string $value
* The value of the variable.
* @property-read bool $is_sensitive
* Whether the variable is sensitive. If so, it will not be copied to child
* environments, and its value will not be returned in the API.
* @property-read bool $is_enabled
* Whether the variable is enabled.
* @property-read bool $is_json
Expand All @@ -25,6 +28,8 @@
* The time the variable was last updated (ISO 8601).
* @property-read bool $inherited
* Whether the variable was inherited from a parent environment.
* @property-read bool $is_inheritable
* Whether the variable is allowed to be inherited by a child environment.
*/
class Variable extends Resource
{
Expand Down

0 comments on commit 6a0bed3

Please sign in to comment.