class ZoneGroup (View source)

ZoneGroup domain entity

Represents the ownership relationship between a zone (domain) and a group

Methods

__construct(int|null $id, int $domainId, int $groupId, string|null $createdAt = null, string|null $name = null, string|null $type = null)

No description

int|null
getId()

No description

int
getDomainId()

No description

int
getGroupId()

No description

string|null
getCreatedAt()

No description

string|null
getName()

No description

string|null
getType()

No description

static ZoneGroup
create(int $domainId, int $groupId)

Create a new zone-group ownership relationship

Details

__construct(int|null $id, int $domainId, int $groupId, string|null $createdAt = null, string|null $name = null, string|null $type = null)

No description

Parameters

int|null $id
int $domainId
int $groupId
string|null $createdAt
string|null $name
string|null $type

int|null getId()

No description

Return Value

int|null

int getDomainId()

No description

Return Value

int

int getGroupId()

No description

Return Value

int

string|null getCreatedAt()

No description

Return Value

string|null

string|null getName()

No description

Return Value

string|null

string|null getType()

No description

Return Value

string|null

static ZoneGroup create(int $domainId, int $groupId)

Create a new zone-group ownership relationship

Parameters

int $domainId

Domain/Zone ID

int $groupId

Group ID

Return Value

ZoneGroup