forked from spatie/schema-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AutomatedTeller.php
1828 lines (1711 loc) · 59.5 KB
/
AutomatedTeller.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
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
namespace Spatie\SchemaOrg;
use \Spatie\SchemaOrg\Contracts\AutomatedTellerContract;
use \Spatie\SchemaOrg\Contracts\FinancialServiceContract;
use \Spatie\SchemaOrg\Contracts\LocalBusinessContract;
use \Spatie\SchemaOrg\Contracts\OrganizationContract;
use \Spatie\SchemaOrg\Contracts\PlaceContract;
use \Spatie\SchemaOrg\Contracts\ThingContract;
/**
* ATM/cash machine.
*
* @see https://schema.org/AutomatedTeller
*
*/
class AutomatedTeller extends BaseType implements AutomatedTellerContract, FinancialServiceContract, LocalBusinessContract, OrganizationContract, PlaceContract, ThingContract
{
/**
* For a [[NewsMediaOrganization]] or other news-related [[Organization]], a
* statement about public engagement activities (for news media, the
* newsroom’s), including involving the public - digitally or otherwise --
* in coverage decisions, reporting and activities after publication.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $actionableFeedbackPolicy
*
* @return static
*
* @see https://schema.org/actionableFeedbackPolicy
* @see http://pending.schema.org
*/
public function actionableFeedbackPolicy($actionableFeedbackPolicy)
{
return $this->setProperty('actionableFeedbackPolicy', $actionableFeedbackPolicy);
}
/**
* A property-value pair representing an additional characteristics of the
* entitity, e.g. a product feature or another characteristic for which
* there is no matching property in schema.org.
*
* Note: Publishers should be aware that applications designed to use
* specific schema.org properties (e.g. https://schema.org/width,
* https://schema.org/color, https://schema.org/gtin13, ...) will typically
* expect such data to be provided using those properties, rather than using
* the generic property/value mechanism.
*
* @param \Spatie\SchemaOrg\Contracts\PropertyValueContract|\Spatie\SchemaOrg\Contracts\PropertyValueContract[] $additionalProperty
*
* @return static
*
* @see https://schema.org/additionalProperty
*/
public function additionalProperty($additionalProperty)
{
return $this->setProperty('additionalProperty', $additionalProperty);
}
/**
* 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);
}
/**
* Physical address of the item.
*
* @param \Spatie\SchemaOrg\Contracts\PostalAddressContract|\Spatie\SchemaOrg\Contracts\PostalAddressContract[]|string|string[] $address
*
* @return static
*
* @see https://schema.org/address
*/
public function address($address)
{
return $this->setProperty('address', $address);
}
/**
* 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);
}
/**
* Alumni of an organization.
*
* @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $alumni
*
* @return static
*
* @see https://schema.org/alumni
*/
public function alumni($alumni)
{
return $this->setProperty('alumni', $alumni);
}
/**
* An amenity feature (e.g. a characteristic or service) of the
* Accommodation. This generic property does not make a statement about
* whether the feature is included in an offer for the main accommodation or
* available at extra costs.
*
* @param \Spatie\SchemaOrg\Contracts\LocationFeatureSpecificationContract|\Spatie\SchemaOrg\Contracts\LocationFeatureSpecificationContract[] $amenityFeature
*
* @return static
*
* @see https://schema.org/amenityFeature
* @link https://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#STI_Accommodation_Ontology
*/
public function amenityFeature($amenityFeature)
{
return $this->setProperty('amenityFeature', $amenityFeature);
}
/**
* 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 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);
}
/**
* Awards won by or for this item.
*
* @param string|string[] $awards
*
* @return static
*
* @see https://schema.org/awards
*/
public function awards($awards)
{
return $this->setProperty('awards', $awards);
}
/**
* A short textual code (also called "store code") that uniquely identifies
* a place of business. The code is typically assigned by the
* parentOrganization and used in structured URLs.
*
* For example, in the URL
* http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code "3047"
* is a branchCode for a particular branch.
*
* @param string|string[] $branchCode
*
* @return static
*
* @see https://schema.org/branchCode
*/
public function branchCode($branchCode)
{
return $this->setProperty('branchCode', $branchCode);
}
/**
* The larger organization that this local business is a branch of, if any.
* Not to be confused with (anatomical)[[branch]].
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $branchOf
*
* @return static
*
* @see https://schema.org/branchOf
*/
public function branchOf($branchOf)
{
return $this->setProperty('branchOf', $branchOf);
}
/**
* 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);
}
/**
* A contact point for a person or organization.
*
* @param \Spatie\SchemaOrg\Contracts\ContactPointContract|\Spatie\SchemaOrg\Contracts\ContactPointContract[] $contactPoint
*
* @return static
*
* @see https://schema.org/contactPoint
*/
public function contactPoint($contactPoint)
{
return $this->setProperty('contactPoint', $contactPoint);
}
/**
* A contact point for a person or organization.
*
* @param \Spatie\SchemaOrg\Contracts\ContactPointContract|\Spatie\SchemaOrg\Contracts\ContactPointContract[] $contactPoints
*
* @return static
*
* @see https://schema.org/contactPoints
*/
public function contactPoints($contactPoints)
{
return $this->setProperty('contactPoints', $contactPoints);
}
/**
* The basic containment relation between a place and one that contains it.
*
* @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $containedIn
*
* @return static
*
* @see https://schema.org/containedIn
*/
public function containedIn($containedIn)
{
return $this->setProperty('containedIn', $containedIn);
}
/**
* The basic containment relation between a place and one that contains it.
*
* @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $containedInPlace
*
* @return static
*
* @see https://schema.org/containedInPlace
*/
public function containedInPlace($containedInPlace)
{
return $this->setProperty('containedInPlace', $containedInPlace);
}
/**
* The basic containment relation between a place and another that it
* contains.
*
* @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $containsPlace
*
* @return static
*
* @see https://schema.org/containsPlace
*/
public function containsPlace($containsPlace)
{
return $this->setProperty('containsPlace', $containsPlace);
}
/**
* For an [[Organization]] (e.g. [[NewsMediaOrganization]]), a statement
* describing (in news media, the newsroom’s) disclosure and correction
* policy for errors.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $correctionsPolicy
*
* @return static
*
* @see https://schema.org/correctionsPolicy
* @see http://pending.schema.org
*/
public function correctionsPolicy($correctionsPolicy)
{
return $this->setProperty('correctionsPolicy', $correctionsPolicy);
}
/**
* The currency accepted.
*
* Use standard formats: [ISO 4217 currency
* format](http://en.wikipedia.org/wiki/ISO_4217) e.g. "USD"; [Ticker
* symbol](https://en.wikipedia.org/wiki/List_of_cryptocurrencies) for
* cryptocurrencies e.g. "BTC"; well known names for [Local Exchange
* Tradings
* Systems](https://en.wikipedia.org/wiki/Local_exchange_trading_system)
* (LETS) and other currency types e.g. "Ithaca HOUR".
*
* @param string|string[] $currenciesAccepted
*
* @return static
*
* @see https://schema.org/currenciesAccepted
*/
public function currenciesAccepted($currenciesAccepted)
{
return $this->setProperty('currenciesAccepted', $currenciesAccepted);
}
/**
* A relationship between an organization and a department of that
* organization, also described as an organization (allowing different urls,
* logos, opening hours). For example: a store with a pharmacy, or a bakery
* with a cafe.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $department
*
* @return static
*
* @see https://schema.org/department
*/
public function department($department)
{
return $this->setProperty('department', $department);
}
/**
* 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);
}
/**
* The date that this organization was dissolved.
*
* @param \DateTimeInterface|\DateTimeInterface[] $dissolutionDate
*
* @return static
*
* @see https://schema.org/dissolutionDate
*/
public function dissolutionDate($dissolutionDate)
{
return $this->setProperty('dissolutionDate', $dissolutionDate);
}
/**
* Statement on diversity policy by an [[Organization]] e.g. a
* [[NewsMediaOrganization]]. For a [[NewsMediaOrganization]], a statement
* describing the newsroom’s diversity policy on both staffing and
* sources, typically providing staffing data.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $diversityPolicy
*
* @return static
*
* @see https://schema.org/diversityPolicy
* @see http://pending.schema.org
*/
public function diversityPolicy($diversityPolicy)
{
return $this->setProperty('diversityPolicy', $diversityPolicy);
}
/**
* For an [[Organization]] (often but not necessarily a
* [[NewsMediaOrganization]]), a report on staffing diversity issues. In a
* news context this might be for example ASNE or RTDNA (US) reports, or
* self-reported.
*
* @param \Spatie\SchemaOrg\Contracts\ArticleContract|\Spatie\SchemaOrg\Contracts\ArticleContract[]|string|string[] $diversityStaffingReport
*
* @return static
*
* @see https://schema.org/diversityStaffingReport
* @see http://pending.schema.org
*/
public function diversityStaffingReport($diversityStaffingReport)
{
return $this->setProperty('diversityStaffingReport', $diversityStaffingReport);
}
/**
* The Dun & Bradstreet DUNS number for identifying an organization or
* business person.
*
* @param string|string[] $duns
*
* @return static
*
* @see https://schema.org/duns
* @link http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms
*/
public function duns($duns)
{
return $this->setProperty('duns', $duns);
}
/**
* Email address.
*
* @param string|string[] $email
*
* @return static
*
* @see https://schema.org/email
*/
public function email($email)
{
return $this->setProperty('email', $email);
}
/**
* Someone working for this organization.
*
* @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $employee
*
* @return static
*
* @see https://schema.org/employee
*/
public function employee($employee)
{
return $this->setProperty('employee', $employee);
}
/**
* People working for this organization.
*
* @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $employees
*
* @return static
*
* @see https://schema.org/employees
*/
public function employees($employees)
{
return $this->setProperty('employees', $employees);
}
/**
* Statement about ethics policy, e.g. of a [[NewsMediaOrganization]]
* regarding journalistic and publishing practices, or of a [[Restaurant]],
* a page describing food source policies. In the case of a
* [[NewsMediaOrganization]], an ethicsPolicy is typically a statement
* describing the personal, organizational, and corporate standards of
* behavior expected by the organization.
*
* @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $ethicsPolicy
*
* @return static
*
* @see https://schema.org/ethicsPolicy
* @see http://pending.schema.org
* @link https://github.com/schemaorg/schemaorg/issues/1525
*/
public function ethicsPolicy($ethicsPolicy)
{
return $this->setProperty('ethicsPolicy', $ethicsPolicy);
}
/**
* Upcoming or past event associated with this place, organization, or
* action.
*
* @param \Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $event
*
* @return static
*
* @see https://schema.org/event
*/
public function event($event)
{
return $this->setProperty('event', $event);
}
/**
* Upcoming or past events associated with this place or organization.
*
* @param \Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $events
*
* @return static
*
* @see https://schema.org/events
*/
public function events($events)
{
return $this->setProperty('events', $events);
}
/**
* The fax number.
*
* @param string|string[] $faxNumber
*
* @return static
*
* @see https://schema.org/faxNumber
*/
public function faxNumber($faxNumber)
{
return $this->setProperty('faxNumber', $faxNumber);
}
/**
* Description of fees, commissions, and other terms applied either to a
* class of financial product, or by a financial service organization.
*
* @param string|string[] $feesAndCommissionsSpecification
*
* @return static
*
* @see https://schema.org/feesAndCommissionsSpecification
* @link http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#FIBO
*/
public function feesAndCommissionsSpecification($feesAndCommissionsSpecification)
{
return $this->setProperty('feesAndCommissionsSpecification', $feesAndCommissionsSpecification);
}
/**
* A person who founded this organization.
*
* @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $founder
*
* @return static
*
* @see https://schema.org/founder
*/
public function founder($founder)
{
return $this->setProperty('founder', $founder);
}
/**
* A person who founded this organization.
*
* @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $founders
*
* @return static
*
* @see https://schema.org/founders
*/
public function founders($founders)
{
return $this->setProperty('founders', $founders);
}
/**
* The date that this organization was founded.
*
* @param \DateTimeInterface|\DateTimeInterface[] $foundingDate
*
* @return static
*
* @see https://schema.org/foundingDate
*/
public function foundingDate($foundingDate)
{
return $this->setProperty('foundingDate', $foundingDate);
}
/**
* The place where the Organization was founded.
*
* @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $foundingLocation
*
* @return static
*
* @see https://schema.org/foundingLocation
*/
public function foundingLocation($foundingLocation)
{
return $this->setProperty('foundingLocation', $foundingLocation);
}
/**
* A person or organization that supports (sponsors) something through some
* kind of financial contribution.
*
* @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $funder
*
* @return static
*
* @see https://schema.org/funder
*/
public function funder($funder)
{
return $this->setProperty('funder', $funder);
}
/**
* The geo coordinates of the place.
*
* @param \Spatie\SchemaOrg\Contracts\GeoCoordinatesContract|\Spatie\SchemaOrg\Contracts\GeoCoordinatesContract[]|\Spatie\SchemaOrg\Contracts\GeoShapeContract|\Spatie\SchemaOrg\Contracts\GeoShapeContract[] $geo
*
* @return static
*
* @see https://schema.org/geo
*/
public function geo($geo)
{
return $this->setProperty('geo', $geo);
}
/**
* Represents a relationship between two geometries (or the places they
* represent), relating a containing geometry to a contained geometry. "a
* contains b iff no points of b lie in the exterior of a, and at least one
* point of the interior of b lies in the interior of a". As defined in
* [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoContains
*
* @return static
*
* @see https://schema.org/geoContains
*/
public function geoContains($geoContains)
{
return $this->setProperty('geoContains', $geoContains);
}
/**
* Represents a relationship between two geometries (or the places they
* represent), relating a geometry to another that covers it. As defined in
* [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoCoveredBy
*
* @return static
*
* @see https://schema.org/geoCoveredBy
*/
public function geoCoveredBy($geoCoveredBy)
{
return $this->setProperty('geoCoveredBy', $geoCoveredBy);
}
/**
* Represents a relationship between two geometries (or the places they
* represent), relating a covering geometry to a covered geometry. "Every
* point of b is a point of (the interior or boundary of) a". As defined in
* [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoCovers
*
* @return static
*
* @see https://schema.org/geoCovers
*/
public function geoCovers($geoCovers)
{
return $this->setProperty('geoCovers', $geoCovers);
}
/**
* Represents a relationship between two geometries (or the places they
* represent), relating a geometry to another that crosses it: "a crosses b:
* they have some but not all interior points in common, and the dimension
* of the intersection is less than that of at least one of them". As
* defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoCrosses
*
* @return static
*
* @see https://schema.org/geoCrosses
*/
public function geoCrosses($geoCrosses)
{
return $this->setProperty('geoCrosses', $geoCrosses);
}
/**
* Represents spatial relations in which two geometries (or the places they
* represent) are topologically disjoint: they have no point in common. They
* form a set of disconnected geometries." (a symmetric relationship, as
* defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM))
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoDisjoint
*
* @return static
*
* @see https://schema.org/geoDisjoint
*/
public function geoDisjoint($geoDisjoint)
{
return $this->setProperty('geoDisjoint', $geoDisjoint);
}
/**
* Represents spatial relations in which two geometries (or the places they
* represent) are topologically equal, as defined in
* [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). "Two geometries are
* topologically equal if their interiors intersect and no part of the
* interior or boundary of one geometry intersects the exterior of the
* other" (a symmetric relationship)
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoEquals
*
* @return static
*
* @see https://schema.org/geoEquals
*/
public function geoEquals($geoEquals)
{
return $this->setProperty('geoEquals', $geoEquals);
}
/**
* Represents spatial relations in which two geometries (or the places they
* represent) have at least one point in common. As defined in
* [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoIntersects
*
* @return static
*
* @see https://schema.org/geoIntersects
*/
public function geoIntersects($geoIntersects)
{
return $this->setProperty('geoIntersects', $geoIntersects);
}
/**
* Represents a relationship between two geometries (or the places they
* represent), relating a geometry to another that geospatially overlaps it,
* i.e. they have some but not all points in common. As defined in
* [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoOverlaps
*
* @return static
*
* @see https://schema.org/geoOverlaps
*/
public function geoOverlaps($geoOverlaps)
{
return $this->setProperty('geoOverlaps', $geoOverlaps);
}
/**
* Represents spatial relations in which two geometries (or the places they
* represent) touch: they have at least one boundary point in common, but no
* interior points." (a symmetric relationship, as defined in
* [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM) )
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoTouches
*
* @return static
*
* @see https://schema.org/geoTouches
*/
public function geoTouches($geoTouches)
{
return $this->setProperty('geoTouches', $geoTouches);
}
/**
* Represents a relationship between two geometries (or the places they
* represent), relating a geometry to one that contains it, i.e. it is
* inside (i.e. within) its interior. As defined in
* [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).
*
* @param \Spatie\SchemaOrg\Contracts\GeospatialGeometryContract|\Spatie\SchemaOrg\Contracts\GeospatialGeometryContract[]|\Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $geoWithin
*
* @return static
*
* @see https://schema.org/geoWithin
*/
public function geoWithin($geoWithin)
{
return $this->setProperty('geoWithin', $geoWithin);
}
/**
* The [Global Location Number](http://www.gs1.org/gln) (GLN, sometimes also
* referred to as International Location Number or ILN) of the respective
* organization, person, or place. The GLN is a 13-digit number used to
* identify parties and physical locations.
*
* @param string|string[] $globalLocationNumber
*
* @return static
*
* @see https://schema.org/globalLocationNumber
* @link http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms
*/
public function globalLocationNumber($globalLocationNumber)
{
return $this->setProperty('globalLocationNumber', $globalLocationNumber);
}
/**
* A credential awarded to the Person or Organization.
*
* @param \Spatie\SchemaOrg\Contracts\EducationalOccupationalCredentialContract|\Spatie\SchemaOrg\Contracts\EducationalOccupationalCredentialContract[] $hasCredential
*
* @return static
*
* @see https://schema.org/hasCredential
* @see http://pending.schema.org
* @link https://github.com/schemaorg/schemaorg/issues/2289
*/
public function hasCredential($hasCredential)
{
return $this->setProperty('hasCredential', $hasCredential);
}
/**
* Indicates whether some facility (e.g. [[FoodEstablishment]],
* [[CovidTestingFacility]]) offers a service that can be used by driving
* through in a car. In the case of [[CovidTestingFacility]] such facilities
* could potentially help with social distancing from other
* potentially-infected users.
*
* @param bool|bool[] $hasDriveThroughService
*
* @return static
*
* @see https://schema.org/hasDriveThroughService
* @see http://pending.schema.org
* @link https://github.com/schemaorg/schemaorg/issues/2490
*/
public function hasDriveThroughService($hasDriveThroughService)
{
return $this->setProperty('hasDriveThroughService', $hasDriveThroughService);
}
/**
* A URL to a map of the place.
*
* @param \Spatie\SchemaOrg\Contracts\MapContract|\Spatie\SchemaOrg\Contracts\MapContract[]|string|string[] $hasMap
*
* @return static
*
* @see https://schema.org/hasMap
*/
public function hasMap($hasMap)
{
return $this->setProperty('hasMap', $hasMap);
}
/**
* Indicates a MerchantReturnPolicy that may be applicable.
*
* @param \Spatie\SchemaOrg\Contracts\MerchantReturnPolicyContract|\Spatie\SchemaOrg\Contracts\MerchantReturnPolicyContract[] $hasMerchantReturnPolicy
*
* @return static
*
* @see https://schema.org/hasMerchantReturnPolicy
* @see http://pending.schema.org
* @link https://github.com/schemaorg/schemaorg/issues/2288
*/
public function hasMerchantReturnPolicy($hasMerchantReturnPolicy)
{
return $this->setProperty('hasMerchantReturnPolicy', $hasMerchantReturnPolicy);
}
/**
* 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);
}
/**
* Points-of-Sales operated by the organization or person.
*
* @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $hasPOS
*
* @return static
*
* @see https://schema.org/hasPOS
* @link http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsTerms
*/
public function hasPOS($hasPOS)
{
return $this->setProperty('hasPOS', $hasPOS);
}
/**
* Indicates a ProductReturnPolicy that may be applicable.
*
* @param \Spatie\SchemaOrg\Contracts\ProductReturnPolicyContract|\Spatie\SchemaOrg\Contracts\ProductReturnPolicyContract[] $hasProductReturnPolicy
*
* @return static
*
* @see https://schema.org/hasProductReturnPolicy
* @see http://attic.schema.org
* @link https://github.com/schemaorg/schemaorg/issues/2288
*/
public function hasProductReturnPolicy($hasProductReturnPolicy)
{
return $this->setProperty('hasProductReturnPolicy', $hasProductReturnPolicy);
}
/**
* 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]].
*