<?php
/**
* Event is an implementation of one of the
* Activity Streams Event object type
*
* @package activity-event-transformers
* @license AGPL-3.0-or-later
*/
* The Object is the primary base type for the Activity Streams
* vocabulary.
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-event
class Place extends \Activitypub\Activity\Base_Object {
* Place is an implementation of one of the
* Activity Streams
* @var string
protected $type = 'Place';
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-accuracy
* @var float
protected $accuracy;
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-altitude
protected $altitude;
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-latitude
protected $latitude;
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-longitude
protected $longitude;
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-radius
protected $radius;
* @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-units
protected $units;
* Extension invented by PeerTube whether comments/replies are <enabled>
* Mobilizon also implemented this as a fallback to their own
* repliesModerationOption.
* @see https://docs.joinpeertube.org/api/activitypub#video
* @see https://docs.joinmobilizon.org/contribute/activity_pub/
* @var bool
protected $comments_enabled;
* @var Postal_Address|string
protected $address;
}