Clip::accessibilityFeature()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace Spatie\SchemaOrg;
4
5
use \Spatie\SchemaOrg\Contracts\ClipContract;
6
use \Spatie\SchemaOrg\Contracts\CreativeWorkContract;
7
use \Spatie\SchemaOrg\Contracts\ThingContract;
8
9
/**
10
 * A short TV or radio program or a segment/part of a program.
11
 *
12
 * @see http://schema.org/Clip
13
 *
14
 */
15
class Clip extends BaseType implements ClipContract, CreativeWorkContract, ThingContract
16
{
17
    /**
18
     * The subject matter of the content.
19
     *
20
     * @param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $about
21
     *
22
     * @return static
23
     *
24
     * @see http://schema.org/about
25
     */
26
    public function about($about)
27
    {
28
        return $this->setProperty('about', $about);
29
    }
30
31
    /**
32
     * The human sensory perceptual system or cognitive faculty through which a
33
     * person may process or perceive information. Expected values include:
34
     * auditory, tactile, textual, visual, colorDependent, chartOnVisual,
35
     * chemOnVisual, diagramOnVisual, mathOnVisual, musicOnVisual, textOnVisual.
36
     *
37
     * @param string|string[] $accessMode
38
     *
39
     * @return static
40
     *
41
     * @see http://schema.org/accessMode
42
     */
43
    public function accessMode($accessMode)
44
    {
45
        return $this->setProperty('accessMode', $accessMode);
46
    }
47
48
    /**
49
     * A list of single or combined accessModes that are sufficient to
50
     * understand all the intellectual content of a resource. Expected values
51
     * include:  auditory, tactile, textual, visual.
52
     *
53
     * @param \Spatie\SchemaOrg\Contracts\ItemListContract|\Spatie\SchemaOrg\Contracts\ItemListContract[] $accessModeSufficient
54
     *
55
     * @return static
56
     *
57
     * @see http://schema.org/accessModeSufficient
58
     */
59
    public function accessModeSufficient($accessModeSufficient)
60
    {
61
        return $this->setProperty('accessModeSufficient', $accessModeSufficient);
62
    }
63
64
    /**
65
     * Indicates that the resource is compatible with the referenced
66
     * accessibility API ([WebSchemas wiki lists possible
67
     * values](http://www.w3.org/wiki/WebSchemas/Accessibility)).
68
     *
69
     * @param string|string[] $accessibilityAPI
70
     *
71
     * @return static
72
     *
73
     * @see http://schema.org/accessibilityAPI
74
     */
75
    public function accessibilityAPI($accessibilityAPI)
76
    {
77
        return $this->setProperty('accessibilityAPI', $accessibilityAPI);
78
    }
79
80
    /**
81
     * Identifies input methods that are sufficient to fully control the
82
     * described resource ([WebSchemas wiki lists possible
83
     * values](http://www.w3.org/wiki/WebSchemas/Accessibility)).
84
     *
85
     * @param string|string[] $accessibilityControl
86
     *
87
     * @return static
88
     *
89
     * @see http://schema.org/accessibilityControl
90
     */
91
    public function accessibilityControl($accessibilityControl)
92
    {
93
        return $this->setProperty('accessibilityControl', $accessibilityControl);
94
    }
95
96
    /**
97
     * Content features of the resource, such as accessible media, alternatives
98
     * and supported enhancements for accessibility ([WebSchemas wiki lists
99
     * possible values](http://www.w3.org/wiki/WebSchemas/Accessibility)).
100
     *
101
     * @param string|string[] $accessibilityFeature
102
     *
103
     * @return static
104
     *
105
     * @see http://schema.org/accessibilityFeature
106
     */
107
    public function accessibilityFeature($accessibilityFeature)
108
    {
109
        return $this->setProperty('accessibilityFeature', $accessibilityFeature);
110
    }
111
112
    /**
113
     * A characteristic of the described resource that is physiologically
114
     * dangerous to some users. Related to WCAG 2.0 guideline 2.3 ([WebSchemas
115
     * wiki lists possible
116
     * values](http://www.w3.org/wiki/WebSchemas/Accessibility)).
117
     *
118
     * @param string|string[] $accessibilityHazard
119
     *
120
     * @return static
121
     *
122
     * @see http://schema.org/accessibilityHazard
123
     */
124
    public function accessibilityHazard($accessibilityHazard)
125
    {
126
        return $this->setProperty('accessibilityHazard', $accessibilityHazard);
127
    }
128
129
    /**
130
     * A human-readable summary of specific accessibility features or
131
     * deficiencies, consistent with the other accessibility metadata but
132
     * expressing subtleties such as "short descriptions are present but long
133
     * descriptions will be needed for non-visual users" or "short descriptions
134
     * are present and no long descriptions are needed."
135
     *
136
     * @param string|string[] $accessibilitySummary
137
     *
138
     * @return static
139
     *
140
     * @see http://schema.org/accessibilitySummary
141
     */
142
    public function accessibilitySummary($accessibilitySummary)
143
    {
144
        return $this->setProperty('accessibilitySummary', $accessibilitySummary);
145
    }
146
147
    /**
148
     * Specifies the Person that is legally accountable for the CreativeWork.
149
     *
150
     * @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $accountablePerson
151
     *
152
     * @return static
153
     *
154
     * @see http://schema.org/accountablePerson
155
     */
156
    public function accountablePerson($accountablePerson)
157
    {
158
        return $this->setProperty('accountablePerson', $accountablePerson);
159
    }
160
161
    /**
162
     * An actor, e.g. in tv, radio, movie, video games etc., or in an event.
163
     * Actors can be associated with individual items or with a series, episode,
164
     * clip.
165
     *
166
     * @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $actor
167
     *
168
     * @return static
169
     *
170
     * @see http://schema.org/actor
171
     */
172
    public function actor($actor)
173
    {
174
        return $this->setProperty('actor', $actor);
175
    }
176
177
    /**
178
     * An actor, e.g. in tv, radio, movie, video games etc. Actors can be
179
     * associated with individual items or with a series, episode, clip.
180
     *
181
     * @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $actors
182
     *
183
     * @return static
184
     *
185
     * @see http://schema.org/actors
186
     */
187
    public function actors($actors)
188
    {
189
        return $this->setProperty('actors', $actors);
190
    }
191
192
    /**
193
     * An additional type for the item, typically used for adding more specific
194
     * types from external vocabularies in microdata syntax. This is a
195
     * relationship between something and a class that the thing is in. In RDFa
196
     * syntax, it is better to use the native RDFa syntax - the 'typeof'
197
     * attribute - for multiple types. Schema.org tools may have only weaker
198
     * understanding of extra types, in particular those defined externally.
199
     *
200
     * @param string|string[] $additionalType
201
     *
202
     * @return static
203
     *
204
     * @see http://schema.org/additionalType
205
     */
206
    public function additionalType($additionalType)
207
    {
208
        return $this->setProperty('additionalType', $additionalType);
209
    }
210
211
    /**
212
     * The overall rating, based on a collection of reviews or ratings, of the
213
     * item.
214
     *
215
     * @param \Spatie\SchemaOrg\Contracts\AggregateRatingContract|\Spatie\SchemaOrg\Contracts\AggregateRatingContract[] $aggregateRating
216
     *
217
     * @return static
218
     *
219
     * @see http://schema.org/aggregateRating
220
     */
221
    public function aggregateRating($aggregateRating)
222
    {
223
        return $this->setProperty('aggregateRating', $aggregateRating);
224
    }
225
226
    /**
227
     * An alias for the item.
228
     *
229
     * @param string|string[] $alternateName
230
     *
231
     * @return static
232
     *
233
     * @see http://schema.org/alternateName
234
     */
235
    public function alternateName($alternateName)
236
    {
237
        return $this->setProperty('alternateName', $alternateName);
238
    }
239
240
    /**
241
     * A secondary title of the CreativeWork.
242
     *
243
     * @param string|string[] $alternativeHeadline
244
     *
245
     * @return static
246
     *
247
     * @see http://schema.org/alternativeHeadline
248
     */
249
    public function alternativeHeadline($alternativeHeadline)
250
    {
251
        return $this->setProperty('alternativeHeadline', $alternativeHeadline);
252
    }
253
254
    /**
255
     * A media object that encodes this CreativeWork. This property is a synonym
256
     * for encoding.
257
     *
258
     * @param \Spatie\SchemaOrg\Contracts\MediaObjectContract|\Spatie\SchemaOrg\Contracts\MediaObjectContract[] $associatedMedia
259
     *
260
     * @return static
261
     *
262
     * @see http://schema.org/associatedMedia
263
     */
264
    public function associatedMedia($associatedMedia)
265
    {
266
        return $this->setProperty('associatedMedia', $associatedMedia);
267
    }
268
269
    /**
270
     * An intended audience, i.e. a group for whom something was created.
271
     *
272
     * @param \Spatie\SchemaOrg\Contracts\AudienceContract|\Spatie\SchemaOrg\Contracts\AudienceContract[] $audience
273
     *
274
     * @return static
275
     *
276
     * @see http://schema.org/audience
277
     */
278
    public function audience($audience)
279
    {
280
        return $this->setProperty('audience', $audience);
281
    }
282
283
    /**
284
     * An embedded audio object.
285
     *
286
     * @param \Spatie\SchemaOrg\Contracts\AudioObjectContract|\Spatie\SchemaOrg\Contracts\AudioObjectContract[]|\Spatie\SchemaOrg\Contracts\ClipContract|\Spatie\SchemaOrg\Contracts\ClipContract[] $audio
287
     *
288
     * @return static
289
     *
290
     * @see http://schema.org/audio
291
     */
292
    public function audio($audio)
293
    {
294
        return $this->setProperty('audio', $audio);
295
    }
296
297
    /**
298
     * The author of this content or rating. Please note that author is special
299
     * in that HTML 5 provides a special mechanism for indicating authorship via
300
     * the rel tag. That is equivalent to this and may be used interchangeably.
301
     *
302
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $author
303
     *
304
     * @return static
305
     *
306
     * @see http://schema.org/author
307
     */
308
    public function author($author)
309
    {
310
        return $this->setProperty('author', $author);
311
    }
312
313
    /**
314
     * An award won by or for this item.
315
     *
316
     * @param string|string[] $award
317
     *
318
     * @return static
319
     *
320
     * @see http://schema.org/award
321
     */
322
    public function award($award)
323
    {
324
        return $this->setProperty('award', $award);
325
    }
326
327
    /**
328
     * Awards won by or for this item.
329
     *
330
     * @param string|string[] $awards
331
     *
332
     * @return static
333
     *
334
     * @see http://schema.org/awards
335
     */
336
    public function awards($awards)
337
    {
338
        return $this->setProperty('awards', $awards);
339
    }
340
341
    /**
342
     * Fictional person connected with a creative work.
343
     *
344
     * @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $character
345
     *
346
     * @return static
347
     *
348
     * @see http://schema.org/character
349
     */
350
    public function character($character)
351
    {
352
        return $this->setProperty('character', $character);
353
    }
354
355
    /**
356
     * A citation or reference to another creative work, such as another
357
     * publication, web page, scholarly article, etc.
358
     *
359
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $citation
360
     *
361
     * @return static
362
     *
363
     * @see http://schema.org/citation
364
     */
365
    public function citation($citation)
366
    {
367
        return $this->setProperty('citation', $citation);
368
    }
369
370
    /**
371
     * Position of the clip within an ordered group of clips.
372
     *
373
     * @param int|int[]|string|string[] $clipNumber
374
     *
375
     * @return static
376
     *
377
     * @see http://schema.org/clipNumber
378
     */
379
    public function clipNumber($clipNumber)
380
    {
381
        return $this->setProperty('clipNumber', $clipNumber);
382
    }
383
384
    /**
385
     * Comments, typically from users.
386
     *
387
     * @param \Spatie\SchemaOrg\Contracts\CommentContract|\Spatie\SchemaOrg\Contracts\CommentContract[] $comment
388
     *
389
     * @return static
390
     *
391
     * @see http://schema.org/comment
392
     */
393
    public function comment($comment)
394
    {
395
        return $this->setProperty('comment', $comment);
396
    }
397
398
    /**
399
     * The number of comments this CreativeWork (e.g. Article, Question or
400
     * Answer) has received. This is most applicable to works published in Web
401
     * sites with commenting system; additional comments may exist elsewhere.
402
     *
403
     * @param int|int[] $commentCount
404
     *
405
     * @return static
406
     *
407
     * @see http://schema.org/commentCount
408
     */
409
    public function commentCount($commentCount)
410
    {
411
        return $this->setProperty('commentCount', $commentCount);
412
    }
413
414
    /**
415
     * The location depicted or described in the content. For example, the
416
     * location in a photograph or painting.
417
     *
418
     * @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $contentLocation
419
     *
420
     * @return static
421
     *
422
     * @see http://schema.org/contentLocation
423
     */
424
    public function contentLocation($contentLocation)
425
    {
426
        return $this->setProperty('contentLocation', $contentLocation);
427
    }
428
429
    /**
430
     * Official rating of a piece of content&#x2014;for example,'MPAA PG-13'.
431
     *
432
     * @param \Spatie\SchemaOrg\Contracts\RatingContract|\Spatie\SchemaOrg\Contracts\RatingContract[]|string|string[] $contentRating
433
     *
434
     * @return static
435
     *
436
     * @see http://schema.org/contentRating
437
     */
438
    public function contentRating($contentRating)
439
    {
440
        return $this->setProperty('contentRating', $contentRating);
441
    }
442
443
    /**
444
     * A secondary contributor to the CreativeWork or Event.
445
     *
446
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $contributor
447
     *
448
     * @return static
449
     *
450
     * @see http://schema.org/contributor
451
     */
452
    public function contributor($contributor)
453
    {
454
        return $this->setProperty('contributor', $contributor);
455
    }
456
457
    /**
458
     * The party holding the legal copyright to the CreativeWork.
459
     *
460
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $copyrightHolder
461
     *
462
     * @return static
463
     *
464
     * @see http://schema.org/copyrightHolder
465
     */
466
    public function copyrightHolder($copyrightHolder)
467
    {
468
        return $this->setProperty('copyrightHolder', $copyrightHolder);
469
    }
470
471
    /**
472
     * The year during which the claimed copyright for the CreativeWork was
473
     * first asserted.
474
     *
475
     * @param float|float[]|int|int[] $copyrightYear
476
     *
477
     * @return static
478
     *
479
     * @see http://schema.org/copyrightYear
480
     */
481
    public function copyrightYear($copyrightYear)
482
    {
483
        return $this->setProperty('copyrightYear', $copyrightYear);
484
    }
485
486
    /**
487
     * The creator/author of this CreativeWork. This is the same as the Author
488
     * property for CreativeWork.
489
     *
490
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $creator
491
     *
492
     * @return static
493
     *
494
     * @see http://schema.org/creator
495
     */
496
    public function creator($creator)
497
    {
498
        return $this->setProperty('creator', $creator);
499
    }
500
501
    /**
502
     * The date on which the CreativeWork was created or the item was added to a
503
     * DataFeed.
504
     *
505
     * @param \DateTimeInterface|\DateTimeInterface[] $dateCreated
506
     *
507
     * @return static
508
     *
509
     * @see http://schema.org/dateCreated
510
     */
511
    public function dateCreated($dateCreated)
512
    {
513
        return $this->setProperty('dateCreated', $dateCreated);
514
    }
515
516
    /**
517
     * The date on which the CreativeWork was most recently modified or when the
518
     * item's entry was modified within a DataFeed.
519
     *
520
     * @param \DateTimeInterface|\DateTimeInterface[] $dateModified
521
     *
522
     * @return static
523
     *
524
     * @see http://schema.org/dateModified
525
     */
526
    public function dateModified($dateModified)
527
    {
528
        return $this->setProperty('dateModified', $dateModified);
529
    }
530
531
    /**
532
     * Date of first broadcast/publication.
533
     *
534
     * @param \DateTimeInterface|\DateTimeInterface[] $datePublished
535
     *
536
     * @return static
537
     *
538
     * @see http://schema.org/datePublished
539
     */
540
    public function datePublished($datePublished)
541
    {
542
        return $this->setProperty('datePublished', $datePublished);
543
    }
544
545
    /**
546
     * A description of the item.
547
     *
548
     * @param string|string[] $description
549
     *
550
     * @return static
551
     *
552
     * @see http://schema.org/description
553
     */
554
    public function description($description)
555
    {
556
        return $this->setProperty('description', $description);
557
    }
558
559
    /**
560
     * A director of e.g. tv, radio, movie, video gaming etc. content, or of an
561
     * event. Directors can be associated with individual items or with a
562
     * series, episode, clip.
563
     *
564
     * @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $director
565
     *
566
     * @return static
567
     *
568
     * @see http://schema.org/director
569
     */
570
    public function director($director)
571
    {
572
        return $this->setProperty('director', $director);
573
    }
574
575
    /**
576
     * A director of e.g. tv, radio, movie, video games etc. content. Directors
577
     * can be associated with individual items or with a series, episode, clip.
578
     *
579
     * @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $directors
580
     *
581
     * @return static
582
     *
583
     * @see http://schema.org/directors
584
     */
585
    public function directors($directors)
586
    {
587
        return $this->setProperty('directors', $directors);
588
    }
589
590
    /**
591
     * A sub property of description. A short description of the item used to
592
     * disambiguate from other, similar items. Information from other properties
593
     * (in particular, name) may be necessary for the description to be useful
594
     * for disambiguation.
595
     *
596
     * @param string|string[] $disambiguatingDescription
597
     *
598
     * @return static
599
     *
600
     * @see http://schema.org/disambiguatingDescription
601
     */
602
    public function disambiguatingDescription($disambiguatingDescription)
603
    {
604
        return $this->setProperty('disambiguatingDescription', $disambiguatingDescription);
605
    }
606
607
    /**
608
     * A link to the page containing the comments of the CreativeWork.
609
     *
610
     * @param string|string[] $discussionUrl
611
     *
612
     * @return static
613
     *
614
     * @see http://schema.org/discussionUrl
615
     */
616
    public function discussionUrl($discussionUrl)
617
    {
618
        return $this->setProperty('discussionUrl', $discussionUrl);
619
    }
620
621
    /**
622
     * Specifies the Person who edited the CreativeWork.
623
     *
624
     * @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $editor
625
     *
626
     * @return static
627
     *
628
     * @see http://schema.org/editor
629
     */
630
    public function editor($editor)
631
    {
632
        return $this->setProperty('editor', $editor);
633
    }
634
635
    /**
636
     * An alignment to an established educational framework.
637
     *
638
     * @param \Spatie\SchemaOrg\Contracts\AlignmentObjectContract|\Spatie\SchemaOrg\Contracts\AlignmentObjectContract[] $educationalAlignment
639
     *
640
     * @return static
641
     *
642
     * @see http://schema.org/educationalAlignment
643
     */
644
    public function educationalAlignment($educationalAlignment)
645
    {
646
        return $this->setProperty('educationalAlignment', $educationalAlignment);
647
    }
648
649
    /**
650
     * The purpose of a work in the context of education; for example,
651
     * 'assignment', 'group work'.
652
     *
653
     * @param string|string[] $educationalUse
654
     *
655
     * @return static
656
     *
657
     * @see http://schema.org/educationalUse
658
     */
659
    public function educationalUse($educationalUse)
660
    {
661
        return $this->setProperty('educationalUse', $educationalUse);
662
    }
663
664
    /**
665
     * A media object that encodes this CreativeWork. This property is a synonym
666
     * for associatedMedia.
667
     *
668
     * @param \Spatie\SchemaOrg\Contracts\MediaObjectContract|\Spatie\SchemaOrg\Contracts\MediaObjectContract[] $encoding
669
     *
670
     * @return static
671
     *
672
     * @see http://schema.org/encoding
673
     */
674
    public function encoding($encoding)
675
    {
676
        return $this->setProperty('encoding', $encoding);
677
    }
678
679
    /**
680
     * Media type typically expressed using a MIME format (see [IANA
681
     * site](http://www.iana.org/assignments/media-types/media-types.xhtml) and
682
     * [MDN
683
     * reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types))
684
     * e.g. application/zip for a SoftwareApplication binary, audio/mpeg for
685
     * .mp3 etc.).
686
     * 
687
     * In cases where a [[CreativeWork]] has several media type representations,
688
     * [[encoding]] can be used to indicate each [[MediaObject]] alongside
689
     * particular [[encodingFormat]] information.
690
     * 
691
     * Unregistered or niche encoding and file formats can be indicated instead
692
     * via the most appropriate URL, e.g. defining Web page or a
693
     * Wikipedia/Wikidata entry.
694
     *
695
     * @param string|string[] $encodingFormat
696
     *
697
     * @return static
698
     *
699
     * @see http://schema.org/encodingFormat
700
     */
701
    public function encodingFormat($encodingFormat)
702
    {
703
        return $this->setProperty('encodingFormat', $encodingFormat);
704
    }
705
706
    /**
707
     * A media object that encodes this CreativeWork.
708
     *
709
     * @param \Spatie\SchemaOrg\Contracts\MediaObjectContract|\Spatie\SchemaOrg\Contracts\MediaObjectContract[] $encodings
710
     *
711
     * @return static
712
     *
713
     * @see http://schema.org/encodings
714
     */
715
    public function encodings($encodings)
716
    {
717
        return $this->setProperty('encodings', $encodings);
718
    }
719
720
    /**
721
     * A creative work that this work is an
722
     * example/instance/realization/derivation of.
723
     *
724
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[] $exampleOfWork
725
     *
726
     * @return static
727
     *
728
     * @see http://schema.org/exampleOfWork
729
     */
730
    public function exampleOfWork($exampleOfWork)
731
    {
732
        return $this->setProperty('exampleOfWork', $exampleOfWork);
733
    }
734
735
    /**
736
     * Date the content expires and is no longer useful or available. For
737
     * example a [[VideoObject]] or [[NewsArticle]] whose availability or
738
     * relevance is time-limited, or a [[ClaimReview]] fact check whose
739
     * publisher wants to indicate that it may no longer be relevant (or helpful
740
     * to highlight) after some date.
741
     *
742
     * @param \DateTimeInterface|\DateTimeInterface[] $expires
743
     *
744
     * @return static
745
     *
746
     * @see http://schema.org/expires
747
     */
748
    public function expires($expires)
749
    {
750
        return $this->setProperty('expires', $expires);
751
    }
752
753
    /**
754
     * Media type, typically MIME format (see [IANA
755
     * site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of
756
     * the content e.g. application/zip of a SoftwareApplication binary. In
757
     * cases where a CreativeWork has several media type representations,
758
     * 'encoding' can be used to indicate each MediaObject alongside particular
759
     * fileFormat information. Unregistered or niche file formats can be
760
     * indicated instead via the most appropriate URL, e.g. defining Web page or
761
     * a Wikipedia entry.
762
     *
763
     * @param string|string[] $fileFormat
764
     *
765
     * @return static
766
     *
767
     * @see http://schema.org/fileFormat
768
     */
769
    public function fileFormat($fileFormat)
770
    {
771
        return $this->setProperty('fileFormat', $fileFormat);
772
    }
773
774
    /**
775
     * A person or organization that supports (sponsors) something through some
776
     * kind of financial contribution.
777
     *
778
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $funder
779
     *
780
     * @return static
781
     *
782
     * @see http://schema.org/funder
783
     */
784
    public function funder($funder)
785
    {
786
        return $this->setProperty('funder', $funder);
787
    }
788
789
    /**
790
     * Genre of the creative work, broadcast channel or group.
791
     *
792
     * @param string|string[] $genre
793
     *
794
     * @return static
795
     *
796
     * @see http://schema.org/genre
797
     */
798
    public function genre($genre)
799
    {
800
        return $this->setProperty('genre', $genre);
801
    }
802
803
    /**
804
     * Indicates an item or CreativeWork that is part of this item, or
805
     * CreativeWork (in some sense).
806
     *
807
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[] $hasPart
808
     *
809
     * @return static
810
     *
811
     * @see http://schema.org/hasPart
812
     */
813
    public function hasPart($hasPart)
814
    {
815
        return $this->setProperty('hasPart', $hasPart);
816
    }
817
818
    /**
819
     * Headline of the article.
820
     *
821
     * @param string|string[] $headline
822
     *
823
     * @return static
824
     *
825
     * @see http://schema.org/headline
826
     */
827
    public function headline($headline)
828
    {
829
        return $this->setProperty('headline', $headline);
830
    }
831
832
    /**
833
     * The identifier property represents any kind of identifier for any kind of
834
     * [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides
835
     * dedicated properties for representing many of these, either as textual
836
     * strings or as URL (URI) links. See [background
837
     * notes](/docs/datamodel.html#identifierBg) for more details.
838
     *
839
     * @param \Spatie\SchemaOrg\Contracts\PropertyValueContract|\Spatie\SchemaOrg\Contracts\PropertyValueContract[]|string|string[] $identifier
840
     *
841
     * @return static
842
     *
843
     * @see http://schema.org/identifier
844
     */
845
    public function identifier($identifier)
846
    {
847
        return $this->setProperty('identifier', $identifier);
848
    }
849
850
    /**
851
     * An image of the item. This can be a [[URL]] or a fully described
852
     * [[ImageObject]].
853
     *
854
     * @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[]|string|string[] $image
855
     *
856
     * @return static
857
     *
858
     * @see http://schema.org/image
859
     */
860
    public function image($image)
861
    {
862
        return $this->setProperty('image', $image);
863
    }
864
865
    /**
866
     * The language of the content or performance or used in an action. Please
867
     * use one of the language codes from the [IETF BCP 47
868
     * standard](http://tools.ietf.org/html/bcp47). See also
869
     * [[availableLanguage]].
870
     *
871
     * @param \Spatie\SchemaOrg\Contracts\LanguageContract|\Spatie\SchemaOrg\Contracts\LanguageContract[]|string|string[] $inLanguage
872
     *
873
     * @return static
874
     *
875
     * @see http://schema.org/inLanguage
876
     */
877
    public function inLanguage($inLanguage)
878
    {
879
        return $this->setProperty('inLanguage', $inLanguage);
880
    }
881
882
    /**
883
     * The number of interactions for the CreativeWork using the WebSite or
884
     * SoftwareApplication. The most specific child type of InteractionCounter
885
     * should be used.
886
     *
887
     * @param \Spatie\SchemaOrg\Contracts\InteractionCounterContract|\Spatie\SchemaOrg\Contracts\InteractionCounterContract[] $interactionStatistic
888
     *
889
     * @return static
890
     *
891
     * @see http://schema.org/interactionStatistic
892
     */
893
    public function interactionStatistic($interactionStatistic)
894
    {
895
        return $this->setProperty('interactionStatistic', $interactionStatistic);
896
    }
897
898
    /**
899
     * The predominant mode of learning supported by the learning resource.
900
     * Acceptable values are 'active', 'expositive', or 'mixed'.
901
     *
902
     * @param string|string[] $interactivityType
903
     *
904
     * @return static
905
     *
906
     * @see http://schema.org/interactivityType
907
     */
908
    public function interactivityType($interactivityType)
909
    {
910
        return $this->setProperty('interactivityType', $interactivityType);
911
    }
912
913
    /**
914
     * A flag to signal that the item, event, or place is accessible for free.
915
     *
916
     * @param bool|bool[] $isAccessibleForFree
917
     *
918
     * @return static
919
     *
920
     * @see http://schema.org/isAccessibleForFree
921
     */
922
    public function isAccessibleForFree($isAccessibleForFree)
923
    {
924
        return $this->setProperty('isAccessibleForFree', $isAccessibleForFree);
925
    }
926
927
    /**
928
     * A resource from which this work is derived or from which it is a
929
     * modification or adaption.
930
     *
931
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[]|string|string[] $isBasedOn
932
     *
933
     * @return static
934
     *
935
     * @see http://schema.org/isBasedOn
936
     */
937
    public function isBasedOn($isBasedOn)
938
    {
939
        return $this->setProperty('isBasedOn', $isBasedOn);
940
    }
941
942
    /**
943
     * A resource that was used in the creation of this resource. This term can
944
     * be repeated for multiple sources. For example,
945
     * http://example.com/great-multiplication-intro.html.
946
     *
947
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[]|string|string[] $isBasedOnUrl
948
     *
949
     * @return static
950
     *
951
     * @see http://schema.org/isBasedOnUrl
952
     */
953
    public function isBasedOnUrl($isBasedOnUrl)
954
    {
955
        return $this->setProperty('isBasedOnUrl', $isBasedOnUrl);
956
    }
957
958
    /**
959
     * Indicates whether this content is family friendly.
960
     *
961
     * @param bool|bool[] $isFamilyFriendly
962
     *
963
     * @return static
964
     *
965
     * @see http://schema.org/isFamilyFriendly
966
     */
967
    public function isFamilyFriendly($isFamilyFriendly)
968
    {
969
        return $this->setProperty('isFamilyFriendly', $isFamilyFriendly);
970
    }
971
972
    /**
973
     * Indicates an item or CreativeWork that this item, or CreativeWork (in
974
     * some sense), is part of.
975
     *
976
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $isPartOf
977
     *
978
     * @return static
979
     *
980
     * @see http://schema.org/isPartOf
981
     */
982
    public function isPartOf($isPartOf)
983
    {
984
        return $this->setProperty('isPartOf', $isPartOf);
985
    }
986
987
    /**
988
     * Keywords or tags used to describe this content. Multiple entries in a
989
     * keywords list are typically delimited by commas.
990
     *
991
     * @param string|string[] $keywords
992
     *
993
     * @return static
994
     *
995
     * @see http://schema.org/keywords
996
     */
997
    public function keywords($keywords)
998
    {
999
        return $this->setProperty('keywords', $keywords);
1000
    }
1001
1002
    /**
1003
     * The predominant type or kind characterizing the learning resource. For
1004
     * example, 'presentation', 'handout'.
1005
     *
1006
     * @param string|string[] $learningResourceType
1007
     *
1008
     * @return static
1009
     *
1010
     * @see http://schema.org/learningResourceType
1011
     */
1012
    public function learningResourceType($learningResourceType)
1013
    {
1014
        return $this->setProperty('learningResourceType', $learningResourceType);
1015
    }
1016
1017
    /**
1018
     * A license document that applies to this content, typically indicated by
1019
     * URL.
1020
     *
1021
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $license
1022
     *
1023
     * @return static
1024
     *
1025
     * @see http://schema.org/license
1026
     */
1027
    public function license($license)
1028
    {
1029
        return $this->setProperty('license', $license);
1030
    }
1031
1032
    /**
1033
     * The location where the CreativeWork was created, which may not be the
1034
     * same as the location depicted in the CreativeWork.
1035
     *
1036
     * @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $locationCreated
1037
     *
1038
     * @return static
1039
     *
1040
     * @see http://schema.org/locationCreated
1041
     */
1042
    public function locationCreated($locationCreated)
1043
    {
1044
        return $this->setProperty('locationCreated', $locationCreated);
1045
    }
1046
1047
    /**
1048
     * Indicates the primary entity described in some page or other
1049
     * CreativeWork.
1050
     *
1051
     * @param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $mainEntity
1052
     *
1053
     * @return static
1054
     *
1055
     * @see http://schema.org/mainEntity
1056
     */
1057
    public function mainEntity($mainEntity)
1058
    {
1059
        return $this->setProperty('mainEntity', $mainEntity);
1060
    }
1061
1062
    /**
1063
     * Indicates a page (or other CreativeWork) for which this thing is the main
1064
     * entity being described. See [background
1065
     * notes](/docs/datamodel.html#mainEntityBackground) for details.
1066
     *
1067
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $mainEntityOfPage
1068
     *
1069
     * @return static
1070
     *
1071
     * @see http://schema.org/mainEntityOfPage
1072
     */
1073
    public function mainEntityOfPage($mainEntityOfPage)
1074
    {
1075
        return $this->setProperty('mainEntityOfPage', $mainEntityOfPage);
1076
    }
1077
1078
    /**
1079
     * A material that something is made from, e.g. leather, wool, cotton,
1080
     * paper.
1081
     *
1082
     * @param \Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[]|string|string[] $material
1083
     *
1084
     * @return static
1085
     *
1086
     * @see http://schema.org/material
1087
     */
1088
    public function material($material)
1089
    {
1090
        return $this->setProperty('material', $material);
1091
    }
1092
1093
    /**
1094
     * Indicates that the CreativeWork contains a reference to, but is not
1095
     * necessarily about a concept.
1096
     *
1097
     * @param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $mentions
1098
     *
1099
     * @return static
1100
     *
1101
     * @see http://schema.org/mentions
1102
     */
1103
    public function mentions($mentions)
1104
    {
1105
        return $this->setProperty('mentions', $mentions);
1106
    }
1107
1108
    /**
1109
     * The composer of the soundtrack.
1110
     *
1111
     * @param \Spatie\SchemaOrg\Contracts\MusicGroupContract|\Spatie\SchemaOrg\Contracts\MusicGroupContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $musicBy
1112
     *
1113
     * @return static
1114
     *
1115
     * @see http://schema.org/musicBy
1116
     */
1117
    public function musicBy($musicBy)
1118
    {
1119
        return $this->setProperty('musicBy', $musicBy);
1120
    }
1121
1122
    /**
1123
     * The name of the item.
1124
     *
1125
     * @param string|string[] $name
1126
     *
1127
     * @return static
1128
     *
1129
     * @see http://schema.org/name
1130
     */
1131
    public function name($name)
1132
    {
1133
        return $this->setProperty('name', $name);
1134
    }
1135
1136
    /**
1137
     * An offer to provide this item&#x2014;for example, an offer to sell a
1138
     * product, rent the DVD of a movie, perform a service, or give away tickets
1139
     * to an event. Use [[businessFunction]] to indicate the kind of transaction
1140
     * offered, i.e. sell, lease, etc. This property can also be used to
1141
     * describe a [[Demand]]. While this property is listed as expected on a
1142
     * number of common types, it can be used in others. In that case, using a
1143
     * second type, such as Product or a subtype of Product, can clarify the
1144
     * nature of the offer.
1145
     *
1146
     * @param \Spatie\SchemaOrg\Contracts\DemandContract|\Spatie\SchemaOrg\Contracts\DemandContract[]|\Spatie\SchemaOrg\Contracts\OfferContract|\Spatie\SchemaOrg\Contracts\OfferContract[] $offers
1147
     *
1148
     * @return static
1149
     *
1150
     * @see http://schema.org/offers
1151
     */
1152
    public function offers($offers)
1153
    {
1154
        return $this->setProperty('offers', $offers);
1155
    }
1156
1157
    /**
1158
     * The episode to which this clip belongs.
1159
     *
1160
     * @param \Spatie\SchemaOrg\Contracts\EpisodeContract|\Spatie\SchemaOrg\Contracts\EpisodeContract[] $partOfEpisode
1161
     *
1162
     * @return static
1163
     *
1164
     * @see http://schema.org/partOfEpisode
1165
     */
1166
    public function partOfEpisode($partOfEpisode)
1167
    {
1168
        return $this->setProperty('partOfEpisode', $partOfEpisode);
1169
    }
1170
1171
    /**
1172
     * The season to which this episode belongs.
1173
     *
1174
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkSeasonContract|\Spatie\SchemaOrg\Contracts\CreativeWorkSeasonContract[] $partOfSeason
1175
     *
1176
     * @return static
1177
     *
1178
     * @see http://schema.org/partOfSeason
1179
     */
1180
    public function partOfSeason($partOfSeason)
1181
    {
1182
        return $this->setProperty('partOfSeason', $partOfSeason);
1183
    }
1184
1185
    /**
1186
     * The series to which this episode or season belongs.
1187
     *
1188
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkSeriesContract|\Spatie\SchemaOrg\Contracts\CreativeWorkSeriesContract[] $partOfSeries
1189
     *
1190
     * @return static
1191
     *
1192
     * @see http://schema.org/partOfSeries
1193
     */
1194
    public function partOfSeries($partOfSeries)
1195
    {
1196
        return $this->setProperty('partOfSeries', $partOfSeries);
1197
    }
1198
1199
    /**
1200
     * The position of an item in a series or sequence of items.
1201
     *
1202
     * @param int|int[]|string|string[] $position
1203
     *
1204
     * @return static
1205
     *
1206
     * @see http://schema.org/position
1207
     */
1208
    public function position($position)
1209
    {
1210
        return $this->setProperty('position', $position);
1211
    }
1212
1213
    /**
1214
     * Indicates a potential Action, which describes an idealized action in
1215
     * which this thing would play an 'object' role.
1216
     *
1217
     * @param \Spatie\SchemaOrg\Contracts\ActionContract|\Spatie\SchemaOrg\Contracts\ActionContract[] $potentialAction
1218
     *
1219
     * @return static
1220
     *
1221
     * @see http://schema.org/potentialAction
1222
     */
1223
    public function potentialAction($potentialAction)
1224
    {
1225
        return $this->setProperty('potentialAction', $potentialAction);
1226
    }
1227
1228
    /**
1229
     * The person or organization who produced the work (e.g. music album,
1230
     * movie, tv/radio series etc.).
1231
     *
1232
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $producer
1233
     *
1234
     * @return static
1235
     *
1236
     * @see http://schema.org/producer
1237
     */
1238
    public function producer($producer)
1239
    {
1240
        return $this->setProperty('producer', $producer);
1241
    }
1242
1243
    /**
1244
     * The service provider, service operator, or service performer; the goods
1245
     * producer. Another party (a seller) may offer those services or goods on
1246
     * behalf of the provider. A provider may also serve as the seller.
1247
     *
1248
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $provider
1249
     *
1250
     * @return static
1251
     *
1252
     * @see http://schema.org/provider
1253
     */
1254
    public function provider($provider)
1255
    {
1256
        return $this->setProperty('provider', $provider);
1257
    }
1258
1259
    /**
1260
     * A publication event associated with the item.
1261
     *
1262
     * @param \Spatie\SchemaOrg\Contracts\PublicationEventContract|\Spatie\SchemaOrg\Contracts\PublicationEventContract[] $publication
1263
     *
1264
     * @return static
1265
     *
1266
     * @see http://schema.org/publication
1267
     */
1268
    public function publication($publication)
1269
    {
1270
        return $this->setProperty('publication', $publication);
1271
    }
1272
1273
    /**
1274
     * The publisher of the creative work.
1275
     *
1276
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $publisher
1277
     *
1278
     * @return static
1279
     *
1280
     * @see http://schema.org/publisher
1281
     */
1282
    public function publisher($publisher)
1283
    {
1284
        return $this->setProperty('publisher', $publisher);
1285
    }
1286
1287
    /**
1288
     * The publishingPrinciples property indicates (typically via [[URL]]) a
1289
     * document describing the editorial principles of an [[Organization]] (or
1290
     * individual e.g. a [[Person]] writing a blog) that relate to their
1291
     * activities as a publisher, e.g. ethics or diversity policies. When
1292
     * applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are
1293
     * those of the party primarily responsible for the creation of the
1294
     * [[CreativeWork]].
1295
     * 
1296
     * While such policies are most typically expressed in natural language,
1297
     * sometimes related information (e.g. indicating a [[funder]]) can be
1298
     * expressed using schema.org terminology.
1299
     *
1300
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $publishingPrinciples
1301
     *
1302
     * @return static
1303
     *
1304
     * @see http://schema.org/publishingPrinciples
1305
     */
1306
    public function publishingPrinciples($publishingPrinciples)
1307
    {
1308
        return $this->setProperty('publishingPrinciples', $publishingPrinciples);
1309
    }
1310
1311
    /**
1312
     * The Event where the CreativeWork was recorded. The CreativeWork may
1313
     * capture all or part of the event.
1314
     *
1315
     * @param \Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $recordedAt
1316
     *
1317
     * @return static
1318
     *
1319
     * @see http://schema.org/recordedAt
1320
     */
1321
    public function recordedAt($recordedAt)
1322
    {
1323
        return $this->setProperty('recordedAt', $recordedAt);
1324
    }
1325
1326
    /**
1327
     * The place and time the release was issued, expressed as a
1328
     * PublicationEvent.
1329
     *
1330
     * @param \Spatie\SchemaOrg\Contracts\PublicationEventContract|\Spatie\SchemaOrg\Contracts\PublicationEventContract[] $releasedEvent
1331
     *
1332
     * @return static
1333
     *
1334
     * @see http://schema.org/releasedEvent
1335
     */
1336
    public function releasedEvent($releasedEvent)
1337
    {
1338
        return $this->setProperty('releasedEvent', $releasedEvent);
1339
    }
1340
1341
    /**
1342
     * A review of the item.
1343
     *
1344
     * @param \Spatie\SchemaOrg\Contracts\ReviewContract|\Spatie\SchemaOrg\Contracts\ReviewContract[] $review
1345
     *
1346
     * @return static
1347
     *
1348
     * @see http://schema.org/review
1349
     */
1350
    public function review($review)
1351
    {
1352
        return $this->setProperty('review', $review);
1353
    }
1354
1355
    /**
1356
     * Review of the item.
1357
     *
1358
     * @param \Spatie\SchemaOrg\Contracts\ReviewContract|\Spatie\SchemaOrg\Contracts\ReviewContract[] $reviews
1359
     *
1360
     * @return static
1361
     *
1362
     * @see http://schema.org/reviews
1363
     */
1364
    public function reviews($reviews)
1365
    {
1366
        return $this->setProperty('reviews', $reviews);
1367
    }
1368
1369
    /**
1370
     * URL of a reference Web page that unambiguously indicates the item's
1371
     * identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or
1372
     * official website.
1373
     *
1374
     * @param string|string[] $sameAs
1375
     *
1376
     * @return static
1377
     *
1378
     * @see http://schema.org/sameAs
1379
     */
1380
    public function sameAs($sameAs)
1381
    {
1382
        return $this->setProperty('sameAs', $sameAs);
1383
    }
1384
1385
    /**
1386
     * Indicates (by URL or string) a particular version of a schema used in
1387
     * some CreativeWork. For example, a document could declare a schemaVersion
1388
     * using an URL such as http://schema.org/version/2.0/ if precise indication
1389
     * of schema version was required by some application.
1390
     *
1391
     * @param string|string[] $schemaVersion
1392
     *
1393
     * @return static
1394
     *
1395
     * @see http://schema.org/schemaVersion
1396
     */
1397
    public function schemaVersion($schemaVersion)
1398
    {
1399
        return $this->setProperty('schemaVersion', $schemaVersion);
1400
    }
1401
1402
    /**
1403
     * The Organization on whose behalf the creator was working.
1404
     *
1405
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $sourceOrganization
1406
     *
1407
     * @return static
1408
     *
1409
     * @see http://schema.org/sourceOrganization
1410
     */
1411
    public function sourceOrganization($sourceOrganization)
1412
    {
1413
        return $this->setProperty('sourceOrganization', $sourceOrganization);
1414
    }
1415
1416
    /**
1417
     * The "spatial" property can be used in cases when more specific properties
1418
     * (e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are
1419
     * not known to be appropriate.
1420
     *
1421
     * @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $spatial
1422
     *
1423
     * @return static
1424
     *
1425
     * @see http://schema.org/spatial
1426
     */
1427
    public function spatial($spatial)
1428
    {
1429
        return $this->setProperty('spatial', $spatial);
1430
    }
1431
1432
    /**
1433
     * The spatialCoverage of a CreativeWork indicates the place(s) which are
1434
     * the focus of the content. It is a subproperty of
1435
     *       contentLocation intended primarily for more technical and detailed
1436
     * materials. For example with a Dataset, it indicates
1437
     *       areas that the dataset describes: a dataset of New York weather
1438
     * would have spatialCoverage which was the place: the state of New York.
1439
     *
1440
     * @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $spatialCoverage
1441
     *
1442
     * @return static
1443
     *
1444
     * @see http://schema.org/spatialCoverage
1445
     */
1446
    public function spatialCoverage($spatialCoverage)
1447
    {
1448
        return $this->setProperty('spatialCoverage', $spatialCoverage);
1449
    }
1450
1451
    /**
1452
     * A person or organization that supports a thing through a pledge, promise,
1453
     * or financial contribution. e.g. a sponsor of a Medical Study or a
1454
     * corporate sponsor of an event.
1455
     *
1456
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $sponsor
1457
     *
1458
     * @return static
1459
     *
1460
     * @see http://schema.org/sponsor
1461
     */
1462
    public function sponsor($sponsor)
1463
    {
1464
        return $this->setProperty('sponsor', $sponsor);
1465
    }
1466
1467
    /**
1468
     * A CreativeWork or Event about this Thing.
1469
     *
1470
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $subjectOf
1471
     *
1472
     * @return static
1473
     *
1474
     * @see http://schema.org/subjectOf
1475
     */
1476
    public function subjectOf($subjectOf)
1477
    {
1478
        return $this->setProperty('subjectOf', $subjectOf);
1479
    }
1480
1481
    /**
1482
     * The "temporal" property can be used in cases where more specific
1483
     * properties
1484
     * (e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]],
1485
     * [[datePublished]]) are not known to be appropriate.
1486
     *
1487
     * @param \DateTimeInterface|\DateTimeInterface[]|string|string[] $temporal
1488
     *
1489
     * @return static
1490
     *
1491
     * @see http://schema.org/temporal
1492
     */
1493
    public function temporal($temporal)
1494
    {
1495
        return $this->setProperty('temporal', $temporal);
1496
    }
1497
1498
    /**
1499
     * The temporalCoverage of a CreativeWork indicates the period that the
1500
     * content applies to, i.e. that it describes, either as a DateTime or as a
1501
     * textual string indicating a time period in [ISO 8601 time interval
1502
     * format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In
1503
     *       the case of a Dataset it will typically indicate the relevant time
1504
     * period in a precise notation (e.g. for a 2011 census dataset, the year
1505
     * 2011 would be written "2011/2012"). Other forms of content e.g.
1506
     * ScholarlyArticle, Book, TVSeries or TVEpisode may indicate their
1507
     * temporalCoverage in broader terms - textually or via well-known URL.
1508
     *       Written works such as books may sometimes have precise temporal
1509
     * coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601
1510
     * interval format format via "1939/1945".
1511
     * 
1512
     * Open-ended date ranges can be written with ".." in place of the end date.
1513
     * For example, "2015-11/.." indicates a range beginning in November 2015
1514
     * and with no specified final date. This is tentative and might be updated
1515
     * in future when ISO 8601 is officially updated.
1516
     *
1517
     * @param \DateTimeInterface|\DateTimeInterface[]|string|string[] $temporalCoverage
1518
     *
1519
     * @return static
1520
     *
1521
     * @see http://schema.org/temporalCoverage
1522
     */
1523
    public function temporalCoverage($temporalCoverage)
1524
    {
1525
        return $this->setProperty('temporalCoverage', $temporalCoverage);
1526
    }
1527
1528
    /**
1529
     * The textual content of this CreativeWork.
1530
     *
1531
     * @param string|string[] $text
1532
     *
1533
     * @return static
1534
     *
1535
     * @see http://schema.org/text
1536
     */
1537
    public function text($text)
1538
    {
1539
        return $this->setProperty('text', $text);
1540
    }
1541
1542
    /**
1543
     * A thumbnail image relevant to the Thing.
1544
     *
1545
     * @param string|string[] $thumbnailUrl
1546
     *
1547
     * @return static
1548
     *
1549
     * @see http://schema.org/thumbnailUrl
1550
     */
1551
    public function thumbnailUrl($thumbnailUrl)
1552
    {
1553
        return $this->setProperty('thumbnailUrl', $thumbnailUrl);
1554
    }
1555
1556
    /**
1557
     * Approximate or typical time it takes to work with or through this
1558
     * learning resource for the typical intended target audience, e.g. 'PT30M',
1559
     * 'PT1H25M'.
1560
     *
1561
     * @param \Spatie\SchemaOrg\Contracts\DurationContract|\Spatie\SchemaOrg\Contracts\DurationContract[] $timeRequired
1562
     *
1563
     * @return static
1564
     *
1565
     * @see http://schema.org/timeRequired
1566
     */
1567
    public function timeRequired($timeRequired)
1568
    {
1569
        return $this->setProperty('timeRequired', $timeRequired);
1570
    }
1571
1572
    /**
1573
     * Organization or person who adapts a creative work to different languages,
1574
     * regional differences and technical requirements of a target market, or
1575
     * that translates during some event.
1576
     *
1577
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $translator
1578
     *
1579
     * @return static
1580
     *
1581
     * @see http://schema.org/translator
1582
     */
1583
    public function translator($translator)
1584
    {
1585
        return $this->setProperty('translator', $translator);
1586
    }
1587
1588
    /**
1589
     * The typical expected age range, e.g. '7-9', '11-'.
1590
     *
1591
     * @param string|string[] $typicalAgeRange
1592
     *
1593
     * @return static
1594
     *
1595
     * @see http://schema.org/typicalAgeRange
1596
     */
1597
    public function typicalAgeRange($typicalAgeRange)
1598
    {
1599
        return $this->setProperty('typicalAgeRange', $typicalAgeRange);
1600
    }
1601
1602
    /**
1603
     * URL of the item.
1604
     *
1605
     * @param string|string[] $url
1606
     *
1607
     * @return static
1608
     *
1609
     * @see http://schema.org/url
1610
     */
1611
    public function url($url)
1612
    {
1613
        return $this->setProperty('url', $url);
1614
    }
1615
1616
    /**
1617
     * The version of the CreativeWork embodied by a specified resource.
1618
     *
1619
     * @param float|float[]|int|int[]|string|string[] $version
1620
     *
1621
     * @return static
1622
     *
1623
     * @see http://schema.org/version
1624
     */
1625
    public function version($version)
1626
    {
1627
        return $this->setProperty('version', $version);
1628
    }
1629
1630
    /**
1631
     * An embedded video object.
1632
     *
1633
     * @param \Spatie\SchemaOrg\Contracts\ClipContract|\Spatie\SchemaOrg\Contracts\ClipContract[]|\Spatie\SchemaOrg\Contracts\VideoObjectContract|\Spatie\SchemaOrg\Contracts\VideoObjectContract[] $video
1634
     *
1635
     * @return static
1636
     *
1637
     * @see http://schema.org/video
1638
     */
1639
    public function video($video)
1640
    {
1641
        return $this->setProperty('video', $video);
1642
    }
1643
1644
    /**
1645
     * Example/instance/realization/derivation of the concept of this creative
1646
     * work. eg. The paperback edition, first edition, or eBook.
1647
     *
1648
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[] $workExample
1649
     *
1650
     * @return static
1651
     *
1652
     * @see http://schema.org/workExample
1653
     */
1654
    public function workExample($workExample)
1655
    {
1656
        return $this->setProperty('workExample', $workExample);
1657
    }
1658
1659
}
1660