AwardGatheringActivity
extends Entity
in package
AwardGatheringActivity Entity
Join entity for the many-to-many relationship between Awards and GatheringActivities. Represents the association between an award and a gathering activity during which the award can be given out.
Table of Contents
Properties
- $award : Award
- $award_id : int
- $created : DateTime
- $created_by : int|null
- $gathering_activity : GatheringActivity
- $gathering_activity_id : int
- $id : int
- $modified : DateTime|null
- $modified_by : int|null
- $_accessible : array<string, bool>
- Fields that can be mass assigned using newEntity() or patchEntity().
Properties
$award
public
Award
$award
$award_id
public
int
$award_id
$created
public
DateTime
$created
$created_by
public
int|null
$created_by
$gathering_activity
public
GatheringActivity
$gathering_activity
$gathering_activity_id
public
int
$gathering_activity_id
$id
public
int
$id
$modified
public
DateTime|null
$modified
$modified_by
public
int|null
$modified_by
$_accessible
Fields that can be mass assigned using newEntity() or patchEntity().
protected
array<string, bool>
$_accessible
= ['award_id' => true, 'gathering_activity_id' => true, 'created' => true, 'modified' => true, 'created_by' => true, 'modified_by' => true, 'award' => true, 'gathering_activity' => true]
Note that when '' is set to true, this allows all unspecified fields to be mass assigned. For security purposes, it is advised to set '' to false (or remove it), and explicitly make individual fields accessible as needed.