@@ -71,7 +71,7 @@ public function additionalProperty($additionalProperty)
7171 * where useful information can be added without their being an appropriate
7272 * schema to reference. In the case of text values, the class label should
7373 * follow the schema.org [style
74- * guide](https://schema.org/docs/styleguide.html)
74+ * guide](https://schema.org/docs/styleguide.html).
7575 *
7676 * @param string|string[] $additionalType
7777 *
@@ -98,6 +98,24 @@ public function address($address)
9898 return $ this ->setProperty ('address ' , $ address );
9999 }
100100
101+ /**
102+ * The number of completed interactions for this entity, in a particular
103+ * role (the 'agent'), in a particular action (indicated in the statistic),
104+ * and in a particular context (i.e. interactionService).
105+ *
106+ * @param \Spatie\SchemaOrg\Contracts\InteractionCounterContract|\Spatie\SchemaOrg\Contracts\InteractionCounterContract[] $agentInteractionStatistic
107+ *
108+ * @return static
109+ *
110+ * @see https://schema.org/agentInteractionStatistic
111+ * @see https://pending.schema.org
112+ * @link https://github.com/schemaorg/schemaorg/issues/2858
113+ */
114+ public function agentInteractionStatistic ($ agentInteractionStatistic )
115+ {
116+ return $ this ->setProperty ('agentInteractionStatistic ' , $ agentInteractionStatistic );
117+ }
118+
101119 /**
102120 * The overall rating, based on a collection of reviews or ratings, of the
103121 * item.
@@ -1582,7 +1600,7 @@ public function priceRange($priceRange)
15821600
15831601 /**
15841602 * A flag to signal that the [[Place]] is open to public visitors. If this
1585- * property is omitted there is no assumed default boolean value
1603+ * property is omitted there is no assumed default boolean value.
15861604 *
15871605 * @param bool|bool[] $publicAccess
15881606 *
0 commit comments