forked from spatie/schema-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBroadcastService.php
740 lines (690 loc) · 23.3 KB
/
BroadcastService.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
<?php
namespace Spatie\SchemaOrg;
use \Spatie\SchemaOrg\Contracts\BroadcastServiceContract;
use \Spatie\SchemaOrg\Contracts\IntangibleContract;
use \Spatie\SchemaOrg\Contracts\ServiceContract;
use \Spatie\SchemaOrg\Contracts\ThingContract;
/**
* A delivery service through which content is provided via broadcast over the
* air or online.
*
* @see https://schema.org/BroadcastService
*
*/
class BroadcastService extends BaseType implements BroadcastServiceContract, IntangibleContract, ServiceContract, ThingContract
{
/**
* An additional type for the item, typically used for adding more specific
* types from external vocabularies in microdata syntax. This is a
* relationship between something and a class that the thing is in. In RDFa
* syntax, it is better to use the native RDFa syntax - the 'typeof'
* attribute - for multiple types. Schema.org tools may have only weaker
* understanding of extra types, in particular those defined externally.
*
* @param string|string[] $additionalType
*
* @return static
*
* @see https://schema.org/additionalType
*/
public function additionalType($additionalType)
{
return $this->setProperty('additionalType', $additionalType);
}
/**
* The overall rating, based on a collection of reviews or ratings, of the
* item.
*
* @param \Spatie\SchemaOrg\Contracts\AggregateRatingContract|\Spatie\SchemaOrg\Contracts\AggregateRatingContract[] $aggregateRating
*
* @return static
*
* @see https://schema.org/aggregateRating
*/
public function aggregateRating($aggregateRating)
{
return $this->setProperty('aggregateRating', $aggregateRating);
}
/**
* An alias for the item.
*
* @param string|string[] $alternateName
*
* @return static
*
* @see https://schema.org/alternateName
*/
public function alternateName($alternateName)
{
return $this->setProperty('alternateName', $alternateName);
}
/**
* The area within which users can expect to reach the broadcast service.
*
* @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $area
*
* @return static
*
* @see https://schema.org/area
*/
public function area($area)
{
return $this->setProperty('area', $area);
}
/**
* The geographic area where a service or offered item is provided.
*
* @param \Spatie\SchemaOrg\Contracts\AdministrativeAreaContract|\Spatie\SchemaOrg\Contracts\AdministrativeAreaContract[]|\Spatie\SchemaOrg\Contracts\GeoShapeContract|\Spatie\SchemaOrg\Contracts\GeoShapeContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[]|string|string[] $areaServed
*
* @return static
*
* @see https://schema.org/areaServed
*/
public function areaServed($areaServed)
{
return $this->setProperty('areaServed', $areaServed);
}
/**
* An intended audience, i.e. a group for whom something was created.
*
* @param \Spatie\SchemaOrg\Contracts\AudienceContract|\Spatie\SchemaOrg\Contracts\AudienceContract[] $audience
*
* @return static
*
* @see https://schema.org/audience
*/
public function audience($audience)
{
return $this->setProperty('audience', $audience);
}
/**
* A means of accessing the service (e.g. a phone bank, a web site, a
* location, etc.).
*
* @param \Spatie\SchemaOrg\Contracts\ServiceChannelContract|\Spatie\SchemaOrg\Contracts\ServiceChannelContract[] $availableChannel
*
* @return static
*
* @see https://schema.org/availableChannel
*/
public function availableChannel($availableChannel)
{
return $this->setProperty('availableChannel', $availableChannel);
}
/**
* An award won by or for this item.
*
* @param string|string[] $award
*
* @return static
*
* @see https://schema.org/award
*/
public function award($award)
{
return $this->setProperty('award', $award);
}
/**
* The brand(s) associated with a product or service, or the brand(s)
* maintained by an organization or business person.
*
* @param \Spatie\SchemaOrg\Contracts\BrandContract|\Spatie\SchemaOrg\Contracts\BrandContract[]|\Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $brand
*
* @return static
*
* @see https://schema.org/brand
*/
public function brand($brand)
{
return $this->setProperty('brand', $brand);
}
/**
* The media network(s) whose content is broadcast on this station.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $broadcastAffiliateOf
*
* @return static
*
* @see https://schema.org/broadcastAffiliateOf
*/
public function broadcastAffiliateOf($broadcastAffiliateOf)
{
return $this->setProperty('broadcastAffiliateOf', $broadcastAffiliateOf);
}
/**
* The name displayed in the channel guide. For many US affiliates, it is
* the network name.
*
* @param string|string[] $broadcastDisplayName
*
* @return static
*
* @see https://schema.org/broadcastDisplayName
*/
public function broadcastDisplayName($broadcastDisplayName)
{
return $this->setProperty('broadcastDisplayName', $broadcastDisplayName);
}
/**
* The frequency used for over-the-air broadcasts. Numeric values or simple
* ranges e.g. 87-99. In addition a shortcut idiom is supported for
* frequences of AM and FM radio channels, e.g. "87 FM".
*
* @param \Spatie\SchemaOrg\Contracts\BroadcastFrequencySpecificationContract|\Spatie\SchemaOrg\Contracts\BroadcastFrequencySpecificationContract[]|string|string[] $broadcastFrequency
*
* @return static
*
* @see https://schema.org/broadcastFrequency
* @link https://github.com/schemaorg/schemaorg/issues/1004
*/
public function broadcastFrequency($broadcastFrequency)
{
return $this->setProperty('broadcastFrequency', $broadcastFrequency);
}
/**
* The timezone in [ISO 8601 format](http://en.wikipedia.org/wiki/ISO_8601)
* for which the service bases its broadcasts
*
* @param string|string[] $broadcastTimezone
*
* @return static
*
* @see https://schema.org/broadcastTimezone
*/
public function broadcastTimezone($broadcastTimezone)
{
return $this->setProperty('broadcastTimezone', $broadcastTimezone);
}
/**
* The organization owning or operating the broadcast service.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $broadcaster
*
* @return static
*
* @see https://schema.org/broadcaster
*/
public function broadcaster($broadcaster)
{
return $this->setProperty('broadcaster', $broadcaster);
}
/**
* An entity that arranges for an exchange between a buyer and a seller. In
* most cases a broker never acquires or releases ownership of a product or
* service involved in an exchange. If it is not clear whether an entity is
* a broker, seller, or buyer, the latter two terms are preferred.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $broker
*
* @return static
*
* @see https://schema.org/broker
*/
public function broker($broker)
{
return $this->setProperty('broker', $broker);
}
/**
* A [callsign](https://en.wikipedia.org/wiki/Call_sign), as used in
* broadcasting and radio communications to identify people, radio and TV
* stations, or vehicles.
*
* @param string|string[] $callSign
*
* @return static
*
* @see https://schema.org/callSign
* @see http://pending.schema.org
* @link https://github.com/schemaorg/schemaorg/issues/2109
*/
public function callSign($callSign)
{
return $this->setProperty('callSign', $callSign);
}
/**
* A category for the item. Greater signs or slashes can be used to
* informally indicate a category hierarchy.
*
* @param \Spatie\SchemaOrg\Contracts\PhysicalActivityCategoryContract|\Spatie\SchemaOrg\Contracts\PhysicalActivityCategoryContract[]|\Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[]|string|string[] $category
*
* @return static
*
* @see https://schema.org/category
*/
public function category($category)
{
return $this->setProperty('category', $category);
}
/**
* A description of the item.
*
* @param string|string[] $description
*
* @return static
*
* @see https://schema.org/description
*/
public function description($description)
{
return $this->setProperty('description', $description);
}
/**
* A sub property of description. A short description of the item used to
* disambiguate from other, similar items. Information from other properties
* (in particular, name) may be necessary for the description to be useful
* for disambiguation.
*
* @param string|string[] $disambiguatingDescription
*
* @return static
*
* @see https://schema.org/disambiguatingDescription
*/
public function disambiguatingDescription($disambiguatingDescription)
{
return $this->setProperty('disambiguatingDescription', $disambiguatingDescription);
}
/**
* A broadcast channel of a broadcast service.
*
* @param \Spatie\SchemaOrg\Contracts\BroadcastChannelContract|\Spatie\SchemaOrg\Contracts\BroadcastChannelContract[] $hasBroadcastChannel
*
* @return static
*
* @see https://schema.org/hasBroadcastChannel
* @link https://github.com/schemaorg/schemaorg/issues/1004
*/
public function hasBroadcastChannel($hasBroadcastChannel)
{
return $this->setProperty('hasBroadcastChannel', $hasBroadcastChannel);
}
/**
* Indicates an OfferCatalog listing for this Organization, Person, or
* Service.
*
* @param \Spatie\SchemaOrg\Contracts\OfferCatalogContract|\Spatie\SchemaOrg\Contracts\OfferCatalogContract[] $hasOfferCatalog
*
* @return static
*
* @see https://schema.org/hasOfferCatalog
*/
public function hasOfferCatalog($hasOfferCatalog)
{
return $this->setProperty('hasOfferCatalog', $hasOfferCatalog);
}
/**
* The hours during which this service or contact is available.
*
* @param \Spatie\SchemaOrg\Contracts\OpeningHoursSpecificationContract|\Spatie\SchemaOrg\Contracts\OpeningHoursSpecificationContract[] $hoursAvailable
*
* @return static
*
* @see https://schema.org/hoursAvailable
*/
public function hoursAvailable($hoursAvailable)
{
return $this->setProperty('hoursAvailable', $hoursAvailable);
}
/**
* The identifier property represents any kind of identifier for any kind of
* [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides
* dedicated properties for representing many of these, either as textual
* strings or as URL (URI) links. See [background
* notes](/docs/datamodel.html#identifierBg) for more details.
*
* @param \Spatie\SchemaOrg\Contracts\PropertyValueContract|\Spatie\SchemaOrg\Contracts\PropertyValueContract[]|string|string[] $identifier
*
* @return static
*
* @see https://schema.org/identifier
*/
public function identifier($identifier)
{
return $this->setProperty('identifier', $identifier);
}
/**
* An image of the item. This can be a [[URL]] or a fully described
* [[ImageObject]].
*
* @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[]|string|string[] $image
*
* @return static
*
* @see https://schema.org/image
*/
public function image($image)
{
return $this->setProperty('image', $image);
}
/**
* The language of the content or performance or used in an action. Please
* use one of the language codes from the [IETF BCP 47
* standard](http://tools.ietf.org/html/bcp47). See also
* [[availableLanguage]].
*
* @param \Spatie\SchemaOrg\Contracts\LanguageContract|\Spatie\SchemaOrg\Contracts\LanguageContract[]|string|string[] $inLanguage
*
* @return static
*
* @see https://schema.org/inLanguage
* @link https://github.com/schemaorg/schemaorg/issues/2382
*/
public function inLanguage($inLanguage)
{
return $this->setProperty('inLanguage', $inLanguage);
}
/**
* A pointer to another, somehow related product (or multiple products).
*
* @param \Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[]|\Spatie\SchemaOrg\Contracts\ServiceContract|\Spatie\SchemaOrg\Contracts\ServiceContract[] $isRelatedTo
*
* @return static
*
* @see https://schema.org/isRelatedTo
* @link http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms
*/
public function isRelatedTo($isRelatedTo)
{
return $this->setProperty('isRelatedTo', $isRelatedTo);
}
/**
* A pointer to another, functionally similar product (or multiple
* products).
*
* @param \Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[]|\Spatie\SchemaOrg\Contracts\ServiceContract|\Spatie\SchemaOrg\Contracts\ServiceContract[] $isSimilarTo
*
* @return static
*
* @see https://schema.org/isSimilarTo
* @link http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms
*/
public function isSimilarTo($isSimilarTo)
{
return $this->setProperty('isSimilarTo', $isSimilarTo);
}
/**
* An associated logo.
*
* @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[]|string|string[] $logo
*
* @return static
*
* @see https://schema.org/logo
* @link http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms
*/
public function logo($logo)
{
return $this->setProperty('logo', $logo);
}
/**
* Indicates a page (or other CreativeWork) for which this thing is the main
* entity being described. See [background
* notes](/docs/datamodel.html#mainEntityBackground) for details.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $mainEntityOfPage
*
* @return static
*
* @see https://schema.org/mainEntityOfPage
*/
public function mainEntityOfPage($mainEntityOfPage)
{
return $this->setProperty('mainEntityOfPage', $mainEntityOfPage);
}
/**
* The name of the item.
*
* @param string|string[] $name
*
* @return static
*
* @see https://schema.org/name
*/
public function name($name)
{
return $this->setProperty('name', $name);
}
/**
* An offer to provide this item—for example, an offer to sell a
* product, rent the DVD of a movie, perform a service, or give away tickets
* to an event. Use [[businessFunction]] to indicate the kind of transaction
* offered, i.e. sell, lease, etc. This property can also be used to
* describe a [[Demand]]. While this property is listed as expected on a
* number of common types, it can be used in others. In that case, using a
* second type, such as Product or a subtype of Product, can clarify the
* nature of the offer.
*
* @param \Spatie\SchemaOrg\Contracts\DemandContract|\Spatie\SchemaOrg\Contracts\DemandContract[]|\Spatie\SchemaOrg\Contracts\OfferContract|\Spatie\SchemaOrg\Contracts\OfferContract[] $offers
*
* @return static
*
* @see https://schema.org/offers
* @link https://github.com/schemaorg/schemaorg/issues/2289
*/
public function offers($offers)
{
return $this->setProperty('offers', $offers);
}
/**
* A broadcast service to which the broadcast service may belong to such as
* regional variations of a national channel.
*
* @param \Spatie\SchemaOrg\Contracts\BroadcastServiceContract|\Spatie\SchemaOrg\Contracts\BroadcastServiceContract[] $parentService
*
* @return static
*
* @see https://schema.org/parentService
*/
public function parentService($parentService)
{
return $this->setProperty('parentService', $parentService);
}
/**
* Indicates a potential Action, which describes an idealized action in
* which this thing would play an 'object' role.
*
* @param \Spatie\SchemaOrg\Contracts\ActionContract|\Spatie\SchemaOrg\Contracts\ActionContract[] $potentialAction
*
* @return static
*
* @see https://schema.org/potentialAction
*/
public function potentialAction($potentialAction)
{
return $this->setProperty('potentialAction', $potentialAction);
}
/**
* The tangible thing generated by the service, e.g. a passport, permit,
* etc.
*
* @param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $produces
*
* @return static
*
* @see https://schema.org/produces
*/
public function produces($produces)
{
return $this->setProperty('produces', $produces);
}
/**
* The service provider, service operator, or service performer; the goods
* producer. Another party (a seller) may offer those services or goods on
* behalf of the provider. A provider may also serve as the seller.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $provider
*
* @return static
*
* @see https://schema.org/provider
* @link https://github.com/schemaorg/schemaorg/issues/2289
*/
public function provider($provider)
{
return $this->setProperty('provider', $provider);
}
/**
* Indicates the mobility of a provided service (e.g. 'static', 'dynamic').
*
* @param string|string[] $providerMobility
*
* @return static
*
* @see https://schema.org/providerMobility
*/
public function providerMobility($providerMobility)
{
return $this->setProperty('providerMobility', $providerMobility);
}
/**
* A review of the item.
*
* @param \Spatie\SchemaOrg\Contracts\ReviewContract|\Spatie\SchemaOrg\Contracts\ReviewContract[] $review
*
* @return static
*
* @see https://schema.org/review
*/
public function review($review)
{
return $this->setProperty('review', $review);
}
/**
* URL of a reference Web page that unambiguously indicates the item's
* identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or
* official website.
*
* @param string|string[] $sameAs
*
* @return static
*
* @see https://schema.org/sameAs
*/
public function sameAs($sameAs)
{
return $this->setProperty('sameAs', $sameAs);
}
/**
* The geographic area where the service is provided.
*
* @param \Spatie\SchemaOrg\Contracts\AdministrativeAreaContract|\Spatie\SchemaOrg\Contracts\AdministrativeAreaContract[]|\Spatie\SchemaOrg\Contracts\GeoShapeContract|\Spatie\SchemaOrg\Contracts\GeoShapeContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $serviceArea
*
* @return static
*
* @see https://schema.org/serviceArea
*/
public function serviceArea($serviceArea)
{
return $this->setProperty('serviceArea', $serviceArea);
}
/**
* The audience eligible for this service.
*
* @param \Spatie\SchemaOrg\Contracts\AudienceContract|\Spatie\SchemaOrg\Contracts\AudienceContract[] $serviceAudience
*
* @return static
*
* @see https://schema.org/serviceAudience
*/
public function serviceAudience($serviceAudience)
{
return $this->setProperty('serviceAudience', $serviceAudience);
}
/**
* The tangible thing generated by the service, e.g. a passport, permit,
* etc.
*
* @param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $serviceOutput
*
* @return static
*
* @see https://schema.org/serviceOutput
*/
public function serviceOutput($serviceOutput)
{
return $this->setProperty('serviceOutput', $serviceOutput);
}
/**
* The type of service being offered, e.g. veterans' benefits, emergency
* relief, etc.
*
* @param \Spatie\SchemaOrg\Contracts\GovernmentBenefitsTypeContract|\Spatie\SchemaOrg\Contracts\GovernmentBenefitsTypeContract[]|string|string[] $serviceType
*
* @return static
*
* @see https://schema.org/serviceType
*/
public function serviceType($serviceType)
{
return $this->setProperty('serviceType', $serviceType);
}
/**
* A slogan or motto associated with the item.
*
* @param string|string[] $slogan
*
* @return static
*
* @see https://schema.org/slogan
*/
public function slogan($slogan)
{
return $this->setProperty('slogan', $slogan);
}
/**
* A CreativeWork or Event about this Thing.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $subjectOf
*
* @return static
*
* @see https://schema.org/subjectOf
* @link https://github.com/schemaorg/schemaorg/issues/1670
*/
public function subjectOf($subjectOf)
{
return $this->setProperty('subjectOf', $subjectOf);
}
/**
* Human-readable terms of service documentation.
*
* @param string|string[] $termsOfService
*
* @return static
*
* @see https://schema.org/termsOfService
* @see http://pending.schema.org
* @link https://github.com/schemaorg/schemaorg/issues/1423
*/
public function termsOfService($termsOfService)
{
return $this->setProperty('termsOfService', $termsOfService);
}
/**
* URL of the item.
*
* @param string|string[] $url
*
* @return static
*
* @see https://schema.org/url
*/
public function url($url)
{
return $this->setProperty('url', $url);
}
/**
* The type of screening or video broadcast used (e.g. IMAX, 3D, SD, HD,
* etc.).
*
* @param string|string[] $videoFormat
*
* @return static
*
* @see https://schema.org/videoFormat
*/
public function videoFormat($videoFormat)
{
return $this->setProperty('videoFormat', $videoFormat);
}
}