VaultObject
in package
implements
JsonSerializable
uses
JsonSerializableTrait
Read onlyYes
An encrypted object with its decrypted value and metadata.
Table of Contents
Interfaces
- JsonSerializable
Properties
- $id : string
- Unique identifier of the object.
- $metadata : ObjectMetadata
- $name : string
- Unique name of the object.
- $value : string
- Decrypted plaintext value.
Methods
- __construct() : mixed
- fromArray() : self
- jsonSerialize() : array<string|int, mixed>
- toArray() : array<string|int, mixed>
Properties
$id
Unique identifier of the object.
public
string
$id
$metadata
public
ObjectMetadata
$metadata
$name
Unique name of the object.
public
string
$name
$value
Decrypted plaintext value.
public
string
$value
Methods
__construct()
public
__construct(string $id, ObjectMetadata $metadata, string $name, string $value) : mixed
Parameters
- $id : string
- $metadata : ObjectMetadata
- $name : string
- $value : string
fromArray()
public
static fromArray(array<string|int, mixed> $data) : self
Parameters
- $data : array<string|int, mixed>
Return values
selfjsonSerialize()
public
jsonSerialize() : array<string|int, mixed>
Return values
array<string|int, mixed>toArray()
public
toArray() : array<string|int, mixed>