Skip to content

Commit

Permalink
add clientId property to the Domain entity (#524)
Browse files Browse the repository at this point in the history
Co-authored-by: dawid.hochman <[email protected]>
  • Loading branch information
DawidVH and dawid.hochman authored Aug 10, 2023
1 parent e7f5595 commit ec21638
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Domains/Entities/Domain.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ class Domain
public $name;
public $status;

public $clientId;
public $registrar;

public $registeredAt;
Expand All @@ -30,6 +31,8 @@ public function __construct($item = null)
$this->name = $item->name;
$this->status = $item->status;

$this->clientId = $item->client_id;

$this->registrar = $item->registrar;

$this->registeredAt = $item->registered_at;
Expand Down

0 comments on commit ec21638

Please sign in to comment.