SubStep
extends Entity
in package
SubStep Entity
Table of Contents
Properties
- $avoid_highways : bool|null
- $avoid_tolls : bool|null
- $city : string
- $description : string|null
- $heure : Time|null
- $id : int
- $order_number : int
- $sub_step_photos : array<string|int, SubStepPhoto>
- $transport_type : string
- $trip : Trip
- $trip_id : int
- $_accessible : array<string, bool>
- Fields that can be mass assigned using newEntity() or patchEntity().
Properties
$avoid_highways
public
bool|null
$avoid_highways
$avoid_tolls
public
bool|null
$avoid_tolls
$city
public
string
$city
$description
public
string|null
$description
$heure
public
Time|null
$heure
$id
public
int
$id
$order_number
public
int
$order_number
$sub_step_photos
public
array<string|int, SubStepPhoto>
$sub_step_photos
$transport_type
public
string
$transport_type
$trip
public
Trip
$trip
$trip_id
public
int
$trip_id
$_accessible
Fields that can be mass assigned using newEntity() or patchEntity().
protected
array<string, bool>
$_accessible
= ['order_number' => true, 'city' => true, 'description' => true, 'trip_id' => true, 'transport_type' => true, 'duration' => true, 'avoid_highways' => true, 'avoid_tolls' => true, 'trip' => true, 'sub_step_photos' => 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.