GatheringActivityWaiver
extends BaseEntity
in package
GatheringActivityWaiver Entity
Join table linking gathering activities to required waiver types.
Table of Contents
Properties
- $branch_id : int|null
- $created : DateTime
- $gathering_activity : GatheringActivity
- $gathering_activity_id : int
- $id : int
- $modified : DateTime|null
- $waiver_type : WaiverType
- $waiver_type_id : int
- $_accessible : array<string, bool>
- Fields that can be mass assigned using newEntity() or patchEntity().
Methods
- getBranchId() : int|null
- Get the branch ID for authorization checks.
Properties
$branch_id
public
int|null
$branch_id
Associated branch ID (when applicable)
$created
public
DateTime
$created
$gathering_activity
public
GatheringActivity
$gathering_activity
$gathering_activity_id
public
int
$gathering_activity_id
$id
public
int
$id
Primary key identifier
$modified
public
DateTime|null
$modified
Last modification timestamp
$waiver_type
public
WaiverType
$waiver_type
$waiver_type_id
public
int
$waiver_type_id
$_accessible
Fields that can be mass assigned using newEntity() or patchEntity().
protected
array<string, bool>
$_accessible
= ['gathering_activity_id' => true, 'waiver_type_id' => true, 'created' => true, 'gathering_activity' => true, 'waiver_type' => true]
Methods
getBranchId()
Get the branch ID for authorization checks.
public
getBranchId() : int|null
Child classes should override for complex branch relationships.
Return values
int|null —The branch ID, or null if no association