vendor/spatie/schema-org/src/WebPage.php line 19

Open in your IDE?
  1. <?php
  2. namespace Spatie\SchemaOrg;
  3. use Spatie\SchemaOrg\Contracts\CreativeWorkContract;
  4. use Spatie\SchemaOrg\Contracts\ThingContract;
  5. use Spatie\SchemaOrg\Contracts\WebPageContract;
  6. /**
  7.  * A web page. Every web page is implicitly assumed to be declared to be of type
  8.  * WebPage, so the various properties about that webpage, such as
  9.  * ```breadcrumb``` may be used. We recommend explicit declaration if these
  10.  * properties are specified, but if they are found outside of an itemscope, they
  11.  * will be assumed to be about the page.
  12.  *
  13.  * @see https://schema.org/WebPage
  14.  *
  15.  */
  16. class WebPage extends BaseType implements WebPageContractCreativeWorkContractThingContract
  17. {
  18.     /**
  19.      * The subject matter of the content.
  20.      *
  21.      * @param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $about
  22.      *
  23.      * @return static
  24.      *
  25.      * @see https://schema.org/about
  26.      * @link https://github.com/schemaorg/schemaorg/issues/1670
  27.      */
  28.     public function about($about)
  29.     {
  30.         return $this->setProperty('about'$about);
  31.     }
  32.     /**
  33.      * An abstract is a short description that summarizes a [[CreativeWork]].
  34.      *
  35.      * @param string|string[] $abstract
  36.      *
  37.      * @return static
  38.      *
  39.      * @see https://schema.org/abstract
  40.      * @see https://pending.schema.org
  41.      * @link https://github.com/schemaorg/schemaorg/issues/276
  42.      */
  43.     public function abstract($abstract)
  44.     {
  45.         return $this->setProperty('abstract'$abstract);
  46.     }
  47.     /**
  48.      * The human sensory perceptual system or cognitive faculty through which a
  49.      * person may process or perceive information. Values should be drawn from
  50.      * the [approved
  51.      * vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessMode-vocabulary).
  52.      *
  53.      * @param string|string[] $accessMode
  54.      *
  55.      * @return static
  56.      *
  57.      * @see https://schema.org/accessMode
  58.      * @link https://github.com/schemaorg/schemaorg/issues/1100
  59.      */
  60.     public function accessMode($accessMode)
  61.     {
  62.         return $this->setProperty('accessMode'$accessMode);
  63.     }
  64.     /**
  65.      * A list of single or combined accessModes that are sufficient to
  66.      * understand all the intellectual content of a resource. Values should be
  67.      * drawn from the [approved
  68.      * vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessModeSufficient-vocabulary).
  69.      *
  70.      * @param \Spatie\SchemaOrg\Contracts\ItemListContract|\Spatie\SchemaOrg\Contracts\ItemListContract[] $accessModeSufficient
  71.      *
  72.      * @return static
  73.      *
  74.      * @see https://schema.org/accessModeSufficient
  75.      * @link https://github.com/schemaorg/schemaorg/issues/1100
  76.      */
  77.     public function accessModeSufficient($accessModeSufficient)
  78.     {
  79.         return $this->setProperty('accessModeSufficient'$accessModeSufficient);
  80.     }
  81.     /**
  82.      * Indicates that the resource is compatible with the referenced
  83.      * accessibility API. Values should be drawn from the [approved
  84.      * vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityAPI-vocabulary).
  85.      *
  86.      * @param string|string[] $accessibilityAPI
  87.      *
  88.      * @return static
  89.      *
  90.      * @see https://schema.org/accessibilityAPI
  91.      */
  92.     public function accessibilityAPI($accessibilityAPI)
  93.     {
  94.         return $this->setProperty('accessibilityAPI'$accessibilityAPI);
  95.     }
  96.     /**
  97.      * Identifies input methods that are sufficient to fully control the
  98.      * described resource. Values should be drawn from the [approved
  99.      * vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityControl-vocabulary).
  100.      *
  101.      * @param string|string[] $accessibilityControl
  102.      *
  103.      * @return static
  104.      *
  105.      * @see https://schema.org/accessibilityControl
  106.      */
  107.     public function accessibilityControl($accessibilityControl)
  108.     {
  109.         return $this->setProperty('accessibilityControl'$accessibilityControl);
  110.     }
  111.     /**
  112.      * Content features of the resource, such as accessible media, alternatives
  113.      * and supported enhancements for accessibility. Values should be drawn from
  114.      * the [approved
  115.      * vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityFeature-vocabulary).
  116.      *
  117.      * @param string|string[] $accessibilityFeature
  118.      *
  119.      * @return static
  120.      *
  121.      * @see https://schema.org/accessibilityFeature
  122.      */
  123.     public function accessibilityFeature($accessibilityFeature)
  124.     {
  125.         return $this->setProperty('accessibilityFeature'$accessibilityFeature);
  126.     }
  127.     /**
  128.      * A characteristic of the described resource that is physiologically
  129.      * dangerous to some users. Related to WCAG 2.0 guideline 2.3. Values should
  130.      * be drawn from the [approved
  131.      * vocabulary](https://www.w3.org/2021/a11y-discov-vocab/latest/#accessibilityHazard-vocabulary).
  132.      *
  133.      * @param string|string[] $accessibilityHazard
  134.      *
  135.      * @return static
  136.      *
  137.      * @see https://schema.org/accessibilityHazard
  138.      */
  139.     public function accessibilityHazard($accessibilityHazard)
  140.     {
  141.         return $this->setProperty('accessibilityHazard'$accessibilityHazard);
  142.     }
  143.     /**
  144.      * A human-readable summary of specific accessibility features or
  145.      * deficiencies, consistent with the other accessibility metadata but
  146.      * expressing subtleties such as "short descriptions are present but long
  147.      * descriptions will be needed for non-visual users" or "short descriptions
  148.      * are present and no long descriptions are needed."
  149.      *
  150.      * @param string|string[] $accessibilitySummary
  151.      *
  152.      * @return static
  153.      *
  154.      * @see https://schema.org/accessibilitySummary
  155.      * @link https://github.com/schemaorg/schemaorg/issues/1100
  156.      */
  157.     public function accessibilitySummary($accessibilitySummary)
  158.     {
  159.         return $this->setProperty('accessibilitySummary'$accessibilitySummary);
  160.     }
  161.     /**
  162.      * Specifies the Person that is legally accountable for the CreativeWork.
  163.      *
  164.      * @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $accountablePerson
  165.      *
  166.      * @return static
  167.      *
  168.      * @see https://schema.org/accountablePerson
  169.      */
  170.     public function accountablePerson($accountablePerson)
  171.     {
  172.         return $this->setProperty('accountablePerson'$accountablePerson);
  173.     }
  174.     /**
  175.      * Indicates a page documenting how licenses can be purchased or otherwise
  176.      * acquired, for the current item.
  177.      *
  178.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $acquireLicensePage
  179.      *
  180.      * @return static
  181.      *
  182.      * @see https://schema.org/acquireLicensePage
  183.      * @see https://pending.schema.org
  184.      * @link https://github.com/schemaorg/schemaorg/issues/2454
  185.      */
  186.     public function acquireLicensePage($acquireLicensePage)
  187.     {
  188.         return $this->setProperty('acquireLicensePage'$acquireLicensePage);
  189.     }
  190.     /**
  191.      * An additional type for the item, typically used for adding more specific
  192.      * types from external vocabularies in microdata syntax. This is a
  193.      * relationship between something and a class that the thing is in. In RDFa
  194.      * syntax, it is better to use the native RDFa syntax - the 'typeof'
  195.      * attribute - for multiple types. Schema.org tools may have only weaker
  196.      * understanding of extra types, in particular those defined externally.
  197.      *
  198.      * @param string|string[] $additionalType
  199.      *
  200.      * @return static
  201.      *
  202.      * @see https://schema.org/additionalType
  203.      */
  204.     public function additionalType($additionalType)
  205.     {
  206.         return $this->setProperty('additionalType'$additionalType);
  207.     }
  208.     /**
  209.      * The overall rating, based on a collection of reviews or ratings, of the
  210.      * item.
  211.      *
  212.      * @param \Spatie\SchemaOrg\Contracts\AggregateRatingContract|\Spatie\SchemaOrg\Contracts\AggregateRatingContract[] $aggregateRating
  213.      *
  214.      * @return static
  215.      *
  216.      * @see https://schema.org/aggregateRating
  217.      */
  218.     public function aggregateRating($aggregateRating)
  219.     {
  220.         return $this->setProperty('aggregateRating'$aggregateRating);
  221.     }
  222.     /**
  223.      * An alias for the item.
  224.      *
  225.      * @param string|string[] $alternateName
  226.      *
  227.      * @return static
  228.      *
  229.      * @see https://schema.org/alternateName
  230.      */
  231.     public function alternateName($alternateName)
  232.     {
  233.         return $this->setProperty('alternateName'$alternateName);
  234.     }
  235.     /**
  236.      * A secondary title of the CreativeWork.
  237.      *
  238.      * @param string|string[] $alternativeHeadline
  239.      *
  240.      * @return static
  241.      *
  242.      * @see https://schema.org/alternativeHeadline
  243.      */
  244.     public function alternativeHeadline($alternativeHeadline)
  245.     {
  246.         return $this->setProperty('alternativeHeadline'$alternativeHeadline);
  247.     }
  248.     /**
  249.      * Indicates a page or other link involved in archival of a
  250.      * [[CreativeWork]]. In the case of [[MediaReview]], the items in a
  251.      * [[MediaReviewItem]] may often become inaccessible, but be archived by
  252.      * archival, journalistic, activist, or law enforcement organizations. In
  253.      * such cases, the referenced page may not directly publish the content.
  254.      *
  255.      * @param \Spatie\SchemaOrg\Contracts\WebPageContract|\Spatie\SchemaOrg\Contracts\WebPageContract[]|string|string[] $archivedAt
  256.      *
  257.      * @return static
  258.      *
  259.      * @see https://schema.org/archivedAt
  260.      * @see https://pending.schema.org
  261.      * @link https://github.com/schemaorg/schemaorg/issues/2450
  262.      */
  263.     public function archivedAt($archivedAt)
  264.     {
  265.         return $this->setProperty('archivedAt'$archivedAt);
  266.     }
  267.     /**
  268.      * The item being described is intended to assess the competency or learning
  269.      * outcome defined by the referenced term.
  270.      *
  271.      * @param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $assesses
  272.      *
  273.      * @return static
  274.      *
  275.      * @see https://schema.org/assesses
  276.      * @see https://pending.schema.org
  277.      * @link https://github.com/schemaorg/schemaorg/issues/2427
  278.      */
  279.     public function assesses($assesses)
  280.     {
  281.         return $this->setProperty('assesses'$assesses);
  282.     }
  283.     /**
  284.      * A media object that encodes this CreativeWork. This property is a synonym
  285.      * for encoding.
  286.      *
  287.      * @param \Spatie\SchemaOrg\Contracts\MediaObjectContract|\Spatie\SchemaOrg\Contracts\MediaObjectContract[] $associatedMedia
  288.      *
  289.      * @return static
  290.      *
  291.      * @see https://schema.org/associatedMedia
  292.      */
  293.     public function associatedMedia($associatedMedia)
  294.     {
  295.         return $this->setProperty('associatedMedia'$associatedMedia);
  296.     }
  297.     /**
  298.      * An intended audience, i.e. a group for whom something was created.
  299.      *
  300.      * @param \Spatie\SchemaOrg\Contracts\AudienceContract|\Spatie\SchemaOrg\Contracts\AudienceContract[] $audience
  301.      *
  302.      * @return static
  303.      *
  304.      * @see https://schema.org/audience
  305.      */
  306.     public function audience($audience)
  307.     {
  308.         return $this->setProperty('audience'$audience);
  309.     }
  310.     /**
  311.      * An embedded audio object.
  312.      *
  313.      * @param \Spatie\SchemaOrg\Contracts\AudioObjectContract|\Spatie\SchemaOrg\Contracts\AudioObjectContract[]|\Spatie\SchemaOrg\Contracts\ClipContract|\Spatie\SchemaOrg\Contracts\ClipContract[]|\Spatie\SchemaOrg\Contracts\MusicRecordingContract|\Spatie\SchemaOrg\Contracts\MusicRecordingContract[] $audio
  314.      *
  315.      * @return static
  316.      *
  317.      * @see https://schema.org/audio
  318.      * @link https://github.com/schemaorg/schemaorg/issues/2420
  319.      */
  320.     public function audio($audio)
  321.     {
  322.         return $this->setProperty('audio'$audio);
  323.     }
  324.     /**
  325.      * The author of this content or rating. Please note that author is special
  326.      * in that HTML 5 provides a special mechanism for indicating authorship via
  327.      * the rel tag. That is equivalent to this and may be used interchangeably.
  328.      *
  329.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $author
  330.      *
  331.      * @return static
  332.      *
  333.      * @see https://schema.org/author
  334.      */
  335.     public function author($author)
  336.     {
  337.         return $this->setProperty('author'$author);
  338.     }
  339.     /**
  340.      * An award won by or for this item.
  341.      *
  342.      * @param string|string[] $award
  343.      *
  344.      * @return static
  345.      *
  346.      * @see https://schema.org/award
  347.      */
  348.     public function award($award)
  349.     {
  350.         return $this->setProperty('award'$award);
  351.     }
  352.     /**
  353.      * Awards won by or for this item.
  354.      *
  355.      * @param string|string[] $awards
  356.      *
  357.      * @return static
  358.      *
  359.      * @see https://schema.org/awards
  360.      */
  361.     public function awards($awards)
  362.     {
  363.         return $this->setProperty('awards'$awards);
  364.     }
  365.     /**
  366.      * A set of links that can help a user understand and navigate a website
  367.      * hierarchy.
  368.      *
  369.      * @param \Spatie\SchemaOrg\Contracts\BreadcrumbListContract|\Spatie\SchemaOrg\Contracts\BreadcrumbListContract[]|string|string[] $breadcrumb
  370.      *
  371.      * @return static
  372.      *
  373.      * @see https://schema.org/breadcrumb
  374.      */
  375.     public function breadcrumb($breadcrumb)
  376.     {
  377.         return $this->setProperty('breadcrumb'$breadcrumb);
  378.     }
  379.     /**
  380.      * Fictional person connected with a creative work.
  381.      *
  382.      * @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $character
  383.      *
  384.      * @return static
  385.      *
  386.      * @see https://schema.org/character
  387.      */
  388.     public function character($character)
  389.     {
  390.         return $this->setProperty('character'$character);
  391.     }
  392.     /**
  393.      * A citation or reference to another creative work, such as another
  394.      * publication, web page, scholarly article, etc.
  395.      *
  396.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $citation
  397.      *
  398.      * @return static
  399.      *
  400.      * @see https://schema.org/citation
  401.      */
  402.     public function citation($citation)
  403.     {
  404.         return $this->setProperty('citation'$citation);
  405.     }
  406.     /**
  407.      * Comments, typically from users.
  408.      *
  409.      * @param \Spatie\SchemaOrg\Contracts\CommentContract|\Spatie\SchemaOrg\Contracts\CommentContract[] $comment
  410.      *
  411.      * @return static
  412.      *
  413.      * @see https://schema.org/comment
  414.      */
  415.     public function comment($comment)
  416.     {
  417.         return $this->setProperty('comment'$comment);
  418.     }
  419.     /**
  420.      * The number of comments this CreativeWork (e.g. Article, Question or
  421.      * Answer) has received. This is most applicable to works published in Web
  422.      * sites with commenting system; additional comments may exist elsewhere.
  423.      *
  424.      * @param int|int[] $commentCount
  425.      *
  426.      * @return static
  427.      *
  428.      * @see https://schema.org/commentCount
  429.      */
  430.     public function commentCount($commentCount)
  431.     {
  432.         return $this->setProperty('commentCount'$commentCount);
  433.     }
  434.     /**
  435.      * Conditions that affect the availability of, or method(s) of access to, an
  436.      * item. Typically used for real world items such as an [[ArchiveComponent]]
  437.      * held by an [[ArchiveOrganization]]. This property is not suitable for use
  438.      * as a general Web access control mechanism. It is expressed only in
  439.      * natural language.
  440.      *
  441.      * For example "Available by appointment from the Reading Room" or
  442.      * "Accessible only from logged-in accounts ".
  443.      *
  444.      * @param string|string[] $conditionsOfAccess
  445.      *
  446.      * @return static
  447.      *
  448.      * @see https://schema.org/conditionsOfAccess
  449.      * @see https://pending.schema.org
  450.      * @link https://github.com/schemaorg/schemaorg/issues/2173
  451.      */
  452.     public function conditionsOfAccess($conditionsOfAccess)
  453.     {
  454.         return $this->setProperty('conditionsOfAccess'$conditionsOfAccess);
  455.     }
  456.     /**
  457.      * The location depicted or described in the content. For example, the
  458.      * location in a photograph or painting.
  459.      *
  460.      * @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $contentLocation
  461.      *
  462.      * @return static
  463.      *
  464.      * @see https://schema.org/contentLocation
  465.      */
  466.     public function contentLocation($contentLocation)
  467.     {
  468.         return $this->setProperty('contentLocation'$contentLocation);
  469.     }
  470.     /**
  471.      * Official rating of a piece of content&#x2014;for example, 'MPAA PG-13'.
  472.      *
  473.      * @param \Spatie\SchemaOrg\Contracts\RatingContract|\Spatie\SchemaOrg\Contracts\RatingContract[]|string|string[] $contentRating
  474.      *
  475.      * @return static
  476.      *
  477.      * @see https://schema.org/contentRating
  478.      */
  479.     public function contentRating($contentRating)
  480.     {
  481.         return $this->setProperty('contentRating'$contentRating);
  482.     }
  483.     /**
  484.      * The specific time described by a creative work, for works (e.g. articles,
  485.      * video objects etc.) that emphasise a particular moment within an Event.
  486.      *
  487.      * @param \DateTimeInterface|\DateTimeInterface[] $contentReferenceTime
  488.      *
  489.      * @return static
  490.      *
  491.      * @see https://schema.org/contentReferenceTime
  492.      * @see https://pending.schema.org
  493.      * @link https://github.com/schemaorg/schemaorg/issues/1050
  494.      */
  495.     public function contentReferenceTime($contentReferenceTime)
  496.     {
  497.         return $this->setProperty('contentReferenceTime'$contentReferenceTime);
  498.     }
  499.     /**
  500.      * A secondary contributor to the CreativeWork or Event.
  501.      *
  502.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $contributor
  503.      *
  504.      * @return static
  505.      *
  506.      * @see https://schema.org/contributor
  507.      */
  508.     public function contributor($contributor)
  509.     {
  510.         return $this->setProperty('contributor'$contributor);
  511.     }
  512.     /**
  513.      * The party holding the legal copyright to the CreativeWork.
  514.      *
  515.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $copyrightHolder
  516.      *
  517.      * @return static
  518.      *
  519.      * @see https://schema.org/copyrightHolder
  520.      */
  521.     public function copyrightHolder($copyrightHolder)
  522.     {
  523.         return $this->setProperty('copyrightHolder'$copyrightHolder);
  524.     }
  525.     /**
  526.      * Text of a notice appropriate for describing the copyright aspects of this
  527.      * Creative Work, ideally indicating the owner of the copyright for the
  528.      * Work.
  529.      *
  530.      * @param string|string[] $copyrightNotice
  531.      *
  532.      * @return static
  533.      *
  534.      * @see https://schema.org/copyrightNotice
  535.      * @see https://pending.schema.org
  536.      * @link https://github.com/schemaorg/schemaorg/issues/2659
  537.      */
  538.     public function copyrightNotice($copyrightNotice)
  539.     {
  540.         return $this->setProperty('copyrightNotice'$copyrightNotice);
  541.     }
  542.     /**
  543.      * The year during which the claimed copyright for the CreativeWork was
  544.      * first asserted.
  545.      *
  546.      * @param float|float[]|int|int[] $copyrightYear
  547.      *
  548.      * @return static
  549.      *
  550.      * @see https://schema.org/copyrightYear
  551.      */
  552.     public function copyrightYear($copyrightYear)
  553.     {
  554.         return $this->setProperty('copyrightYear'$copyrightYear);
  555.     }
  556.     /**
  557.      * Indicates a correction to a [[CreativeWork]], either via a
  558.      * [[CorrectionComment]], textually or in another document.
  559.      *
  560.      * @param \Spatie\SchemaOrg\Contracts\CorrectionCommentContract|\Spatie\SchemaOrg\Contracts\CorrectionCommentContract[]|string|string[] $correction
  561.      *
  562.      * @return static
  563.      *
  564.      * @see https://schema.org/correction
  565.      * @see https://pending.schema.org
  566.      */
  567.     public function correction($correction)
  568.     {
  569.         return $this->setProperty('correction'$correction);
  570.     }
  571.     /**
  572.      * The country of origin of something, including products as well as
  573.      * creative  works such as movie and TV content.
  574.      *
  575.      * In the case of TV and movie, this would be the country of the principle
  576.      * offices of the production company or individual responsible for the
  577.      * movie. For other kinds of [[CreativeWork]] it is difficult to provide
  578.      * fully general guidance, and properties such as [[contentLocation]] and
  579.      * [[locationCreated]] may be more applicable.
  580.      *
  581.      * In the case of products, the country of origin of the product. The exact
  582.      * interpretation of this may vary by context and product type, and cannot
  583.      * be fully enumerated here.
  584.      *
  585.      * @param \Spatie\SchemaOrg\Contracts\CountryContract|\Spatie\SchemaOrg\Contracts\CountryContract[] $countryOfOrigin
  586.      *
  587.      * @return static
  588.      *
  589.      * @see https://schema.org/countryOfOrigin
  590.      */
  591.     public function countryOfOrigin($countryOfOrigin)
  592.     {
  593.         return $this->setProperty('countryOfOrigin'$countryOfOrigin);
  594.     }
  595.     /**
  596.      * The status of a creative work in terms of its stage in a lifecycle.
  597.      * Example terms include Incomplete, Draft, Published, Obsolete. Some
  598.      * organizations define a set of terms for the stages of their publication
  599.      * lifecycle.
  600.      *
  601.      * @param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $creativeWorkStatus
  602.      *
  603.      * @return static
  604.      *
  605.      * @see https://schema.org/creativeWorkStatus
  606.      * @see https://pending.schema.org
  607.      * @link https://github.com/schemaorg/schemaorg/issues/987
  608.      */
  609.     public function creativeWorkStatus($creativeWorkStatus)
  610.     {
  611.         return $this->setProperty('creativeWorkStatus'$creativeWorkStatus);
  612.     }
  613.     /**
  614.      * The creator/author of this CreativeWork. This is the same as the Author
  615.      * property for CreativeWork.
  616.      *
  617.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $creator
  618.      *
  619.      * @return static
  620.      *
  621.      * @see https://schema.org/creator
  622.      */
  623.     public function creator($creator)
  624.     {
  625.         return $this->setProperty('creator'$creator);
  626.     }
  627.     /**
  628.      * Text that can be used to credit person(s) and/or organization(s)
  629.      * associated with a published Creative Work.
  630.      *
  631.      * @param string|string[] $creditText
  632.      *
  633.      * @return static
  634.      *
  635.      * @see https://schema.org/creditText
  636.      * @see https://pending.schema.org
  637.      * @link https://github.com/schemaorg/schemaorg/issues/2659
  638.      */
  639.     public function creditText($creditText)
  640.     {
  641.         return $this->setProperty('creditText'$creditText);
  642.     }
  643.     /**
  644.      * The date on which the CreativeWork was created or the item was added to a
  645.      * DataFeed.
  646.      *
  647.      * @param \DateTimeInterface|\DateTimeInterface[] $dateCreated
  648.      *
  649.      * @return static
  650.      *
  651.      * @see https://schema.org/dateCreated
  652.      */
  653.     public function dateCreated($dateCreated)
  654.     {
  655.         return $this->setProperty('dateCreated'$dateCreated);
  656.     }
  657.     /**
  658.      * The date on which the CreativeWork was most recently modified or when the
  659.      * item's entry was modified within a DataFeed.
  660.      *
  661.      * @param \DateTimeInterface|\DateTimeInterface[] $dateModified
  662.      *
  663.      * @return static
  664.      *
  665.      * @see https://schema.org/dateModified
  666.      */
  667.     public function dateModified($dateModified)
  668.     {
  669.         return $this->setProperty('dateModified'$dateModified);
  670.     }
  671.     /**
  672.      * Date of first broadcast/publication.
  673.      *
  674.      * @param \DateTimeInterface|\DateTimeInterface[] $datePublished
  675.      *
  676.      * @return static
  677.      *
  678.      * @see https://schema.org/datePublished
  679.      */
  680.     public function datePublished($datePublished)
  681.     {
  682.         return $this->setProperty('datePublished'$datePublished);
  683.     }
  684.     /**
  685.      * A description of the item.
  686.      *
  687.      * @param string|string[] $description
  688.      *
  689.      * @return static
  690.      *
  691.      * @see https://schema.org/description
  692.      */
  693.     public function description($description)
  694.     {
  695.         return $this->setProperty('description'$description);
  696.     }
  697.     /**
  698.      * A sub property of description. A short description of the item used to
  699.      * disambiguate from other, similar items. Information from other properties
  700.      * (in particular, name) may be necessary for the description to be useful
  701.      * for disambiguation.
  702.      *
  703.      * @param string|string[] $disambiguatingDescription
  704.      *
  705.      * @return static
  706.      *
  707.      * @see https://schema.org/disambiguatingDescription
  708.      */
  709.     public function disambiguatingDescription($disambiguatingDescription)
  710.     {
  711.         return $this->setProperty('disambiguatingDescription'$disambiguatingDescription);
  712.     }
  713.     /**
  714.      * A link to the page containing the comments of the CreativeWork.
  715.      *
  716.      * @param string|string[] $discussionUrl
  717.      *
  718.      * @return static
  719.      *
  720.      * @see https://schema.org/discussionUrl
  721.      */
  722.     public function discussionUrl($discussionUrl)
  723.     {
  724.         return $this->setProperty('discussionUrl'$discussionUrl);
  725.     }
  726.     /**
  727.      * An [EIDR](https://eidr.org/) (Entertainment Identifier Registry)
  728.      * [[identifier]] representing a specific edit / edition for a work of film
  729.      * or television.
  730.      *
  731.      * For example, the motion picture known as "Ghostbusters" whose
  732.      * [[titleEIDR]] is "10.5240/7EC7-228A-510A-053E-CBB8-J" has several edits,
  733.      * e.g. "10.5240/1F2A-E1C5-680A-14C6-E76B-I" and
  734.      * "10.5240/8A35-3BEE-6497-5D12-9E4F-3".
  735.      *
  736.      * Since schema.org types like [[Movie]] and [[TVEpisode]] can be used for
  737.      * both works and their multiple expressions, it is possible to use
  738.      * [[titleEIDR]] alone (for a general description), or alongside
  739.      * [[editEIDR]] for a more edit-specific description.
  740.      *
  741.      * @param string|string[] $editEIDR
  742.      *
  743.      * @return static
  744.      *
  745.      * @see https://schema.org/editEIDR
  746.      * @see https://pending.schema.org
  747.      * @link https://github.com/schemaorg/schemaorg/issues/2469
  748.      */
  749.     public function editEIDR($editEIDR)
  750.     {
  751.         return $this->setProperty('editEIDR'$editEIDR);
  752.     }
  753.     /**
  754.      * Specifies the Person who edited the CreativeWork.
  755.      *
  756.      * @param \Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $editor
  757.      *
  758.      * @return static
  759.      *
  760.      * @see https://schema.org/editor
  761.      */
  762.     public function editor($editor)
  763.     {
  764.         return $this->setProperty('editor'$editor);
  765.     }
  766.     /**
  767.      * An alignment to an established educational framework.
  768.      *
  769.      * This property should not be used where the nature of the alignment can be
  770.      * described using a simple property, for example to express that a resource
  771.      * [[teaches]] or [[assesses]] a competency.
  772.      *
  773.      * @param \Spatie\SchemaOrg\Contracts\AlignmentObjectContract|\Spatie\SchemaOrg\Contracts\AlignmentObjectContract[] $educationalAlignment
  774.      *
  775.      * @return static
  776.      *
  777.      * @see https://schema.org/educationalAlignment
  778.      */
  779.     public function educationalAlignment($educationalAlignment)
  780.     {
  781.         return $this->setProperty('educationalAlignment'$educationalAlignment);
  782.     }
  783.     /**
  784.      * The level in terms of progression through an educational or training
  785.      * context. Examples of educational levels include 'beginner',
  786.      * 'intermediate' or 'advanced', and formal sets of level indicators.
  787.      *
  788.      * @param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $educationalLevel
  789.      *
  790.      * @return static
  791.      *
  792.      * @see https://schema.org/educationalLevel
  793.      * @see https://pending.schema.org
  794.      * @link https://github.com/schemaorg/schemaorg/issues/1779
  795.      */
  796.     public function educationalLevel($educationalLevel)
  797.     {
  798.         return $this->setProperty('educationalLevel'$educationalLevel);
  799.     }
  800.     /**
  801.      * The purpose of a work in the context of education; for example,
  802.      * 'assignment', 'group work'.
  803.      *
  804.      * @param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $educationalUse
  805.      *
  806.      * @return static
  807.      *
  808.      * @see https://schema.org/educationalUse
  809.      */
  810.     public function educationalUse($educationalUse)
  811.     {
  812.         return $this->setProperty('educationalUse'$educationalUse);
  813.     }
  814.     /**
  815.      * A media object that encodes this CreativeWork. This property is a synonym
  816.      * for associatedMedia.
  817.      *
  818.      * @param \Spatie\SchemaOrg\Contracts\MediaObjectContract|\Spatie\SchemaOrg\Contracts\MediaObjectContract[] $encoding
  819.      *
  820.      * @return static
  821.      *
  822.      * @see https://schema.org/encoding
  823.      */
  824.     public function encoding($encoding)
  825.     {
  826.         return $this->setProperty('encoding'$encoding);
  827.     }
  828.     /**
  829.      * Media type typically expressed using a MIME format (see [IANA
  830.      * site](http://www.iana.org/assignments/media-types/media-types.xhtml) and
  831.      * [MDN
  832.      * reference](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)),
  833.      * e.g. application/zip for a SoftwareApplication binary, audio/mpeg for
  834.      * .mp3 etc.
  835.      *
  836.      * In cases where a [[CreativeWork]] has several media type representations,
  837.      * [[encoding]] can be used to indicate each [[MediaObject]] alongside
  838.      * particular [[encodingFormat]] information.
  839.      *
  840.      * Unregistered or niche encoding and file formats can be indicated instead
  841.      * via the most appropriate URL, e.g. defining Web page or a
  842.      * Wikipedia/Wikidata entry.
  843.      *
  844.      * @param string|string[] $encodingFormat
  845.      *
  846.      * @return static
  847.      *
  848.      * @see https://schema.org/encodingFormat
  849.      */
  850.     public function encodingFormat($encodingFormat)
  851.     {
  852.         return $this->setProperty('encodingFormat'$encodingFormat);
  853.     }
  854.     /**
  855.      * A media object that encodes this CreativeWork.
  856.      *
  857.      * @param \Spatie\SchemaOrg\Contracts\MediaObjectContract|\Spatie\SchemaOrg\Contracts\MediaObjectContract[] $encodings
  858.      *
  859.      * @return static
  860.      *
  861.      * @see https://schema.org/encodings
  862.      */
  863.     public function encodings($encodings)
  864.     {
  865.         return $this->setProperty('encodings'$encodings);
  866.     }
  867.     /**
  868.      * A creative work that this work is an
  869.      * example/instance/realization/derivation of.
  870.      *
  871.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[] $exampleOfWork
  872.      *
  873.      * @return static
  874.      *
  875.      * @see https://schema.org/exampleOfWork
  876.      * @link http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex
  877.      */
  878.     public function exampleOfWork($exampleOfWork)
  879.     {
  880.         return $this->setProperty('exampleOfWork'$exampleOfWork);
  881.     }
  882.     /**
  883.      * Date the content expires and is no longer useful or available. For
  884.      * example a [[VideoObject]] or [[NewsArticle]] whose availability or
  885.      * relevance is time-limited, or a [[ClaimReview]] fact check whose
  886.      * publisher wants to indicate that it may no longer be relevant (or helpful
  887.      * to highlight) after some date.
  888.      *
  889.      * @param \DateTimeInterface|\DateTimeInterface[] $expires
  890.      *
  891.      * @return static
  892.      *
  893.      * @see https://schema.org/expires
  894.      */
  895.     public function expires($expires)
  896.     {
  897.         return $this->setProperty('expires'$expires);
  898.     }
  899.     /**
  900.      * Media type, typically MIME format (see [IANA
  901.      * site](http://www.iana.org/assignments/media-types/media-types.xhtml)) of
  902.      * the content, e.g. application/zip of a SoftwareApplication binary. In
  903.      * cases where a CreativeWork has several media type representations,
  904.      * 'encoding' can be used to indicate each MediaObject alongside particular
  905.      * fileFormat information. Unregistered or niche file formats can be
  906.      * indicated instead via the most appropriate URL, e.g. defining Web page or
  907.      * a Wikipedia entry.
  908.      *
  909.      * @param string|string[] $fileFormat
  910.      *
  911.      * @return static
  912.      *
  913.      * @see https://schema.org/fileFormat
  914.      */
  915.     public function fileFormat($fileFormat)
  916.     {
  917.         return $this->setProperty('fileFormat'$fileFormat);
  918.     }
  919.     /**
  920.      * A person or organization that supports (sponsors) something through some
  921.      * kind of financial contribution.
  922.      *
  923.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $funder
  924.      *
  925.      * @return static
  926.      *
  927.      * @see https://schema.org/funder
  928.      */
  929.     public function funder($funder)
  930.     {
  931.         return $this->setProperty('funder'$funder);
  932.     }
  933.     /**
  934.      * A [[Grant]] that directly or indirectly provide funding or sponsorship
  935.      * for this item. See also [[ownershipFundingInfo]].
  936.      *
  937.      * @param \Spatie\SchemaOrg\Contracts\GrantContract|\Spatie\SchemaOrg\Contracts\GrantContract[] $funding
  938.      *
  939.      * @return static
  940.      *
  941.      * @see https://schema.org/funding
  942.      * @see https://pending.schema.org
  943.      */
  944.     public function funding($funding)
  945.     {
  946.         return $this->setProperty('funding'$funding);
  947.     }
  948.     /**
  949.      * Genre of the creative work, broadcast channel or group.
  950.      *
  951.      * @param string|string[] $genre
  952.      *
  953.      * @return static
  954.      *
  955.      * @see https://schema.org/genre
  956.      */
  957.     public function genre($genre)
  958.     {
  959.         return $this->setProperty('genre'$genre);
  960.     }
  961.     /**
  962.      * Indicates an item or CreativeWork that is part of this item, or
  963.      * CreativeWork (in some sense).
  964.      *
  965.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[] $hasPart
  966.      *
  967.      * @return static
  968.      *
  969.      * @see https://schema.org/hasPart
  970.      * @link http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex
  971.      */
  972.     public function hasPart($hasPart)
  973.     {
  974.         return $this->setProperty('hasPart'$hasPart);
  975.     }
  976.     /**
  977.      * Headline of the article.
  978.      *
  979.      * @param string|string[] $headline
  980.      *
  981.      * @return static
  982.      *
  983.      * @see https://schema.org/headline
  984.      */
  985.     public function headline($headline)
  986.     {
  987.         return $this->setProperty('headline'$headline);
  988.     }
  989.     /**
  990.      * The identifier property represents any kind of identifier for any kind of
  991.      * [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides
  992.      * dedicated properties for representing many of these, either as textual
  993.      * strings or as URL (URI) links. See [background
  994.      * notes](/docs/datamodel.html#identifierBg) for more details.
  995.      *
  996.      * @param \Spatie\SchemaOrg\Contracts\PropertyValueContract|\Spatie\SchemaOrg\Contracts\PropertyValueContract[]|string|string[] $identifier
  997.      *
  998.      * @return static
  999.      *
  1000.      * @see https://schema.org/identifier
  1001.      */
  1002.     public function identifier($identifier)
  1003.     {
  1004.         return $this->setProperty('identifier'$identifier);
  1005.     }
  1006.     /**
  1007.      * An image of the item. This can be a [[URL]] or a fully described
  1008.      * [[ImageObject]].
  1009.      *
  1010.      * @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[]|string|string[] $image
  1011.      *
  1012.      * @return static
  1013.      *
  1014.      * @see https://schema.org/image
  1015.      */
  1016.     public function image($image)
  1017.     {
  1018.         return $this->setProperty('image'$image);
  1019.     }
  1020.     /**
  1021.      * The language of the content or performance or used in an action. Please
  1022.      * use one of the language codes from the [IETF BCP 47
  1023.      * standard](http://tools.ietf.org/html/bcp47). See also
  1024.      * [[availableLanguage]].
  1025.      *
  1026.      * @param \Spatie\SchemaOrg\Contracts\LanguageContract|\Spatie\SchemaOrg\Contracts\LanguageContract[]|string|string[] $inLanguage
  1027.      *
  1028.      * @return static
  1029.      *
  1030.      * @see https://schema.org/inLanguage
  1031.      * @link https://github.com/schemaorg/schemaorg/issues/2382
  1032.      */
  1033.     public function inLanguage($inLanguage)
  1034.     {
  1035.         return $this->setProperty('inLanguage'$inLanguage);
  1036.     }
  1037.     /**
  1038.      * The number of interactions for the CreativeWork using the WebSite or
  1039.      * SoftwareApplication. The most specific child type of InteractionCounter
  1040.      * should be used.
  1041.      *
  1042.      * @param \Spatie\SchemaOrg\Contracts\InteractionCounterContract|\Spatie\SchemaOrg\Contracts\InteractionCounterContract[] $interactionStatistic
  1043.      *
  1044.      * @return static
  1045.      *
  1046.      * @see https://schema.org/interactionStatistic
  1047.      * @link https://github.com/schemaorg/schemaorg/issues/2421
  1048.      */
  1049.     public function interactionStatistic($interactionStatistic)
  1050.     {
  1051.         return $this->setProperty('interactionStatistic'$interactionStatistic);
  1052.     }
  1053.     /**
  1054.      * The predominant mode of learning supported by the learning resource.
  1055.      * Acceptable values are 'active', 'expositive', or 'mixed'.
  1056.      *
  1057.      * @param string|string[] $interactivityType
  1058.      *
  1059.      * @return static
  1060.      *
  1061.      * @see https://schema.org/interactivityType
  1062.      */
  1063.     public function interactivityType($interactivityType)
  1064.     {
  1065.         return $this->setProperty('interactivityType'$interactivityType);
  1066.     }
  1067.     /**
  1068.      * Used to indicate a specific claim contained, implied, translated or
  1069.      * refined from the content of a [[MediaObject]] or other [[CreativeWork]].
  1070.      * The interpreting party can be indicated using [[claimInterpreter]].
  1071.      *
  1072.      * @param \Spatie\SchemaOrg\Contracts\ClaimContract|\Spatie\SchemaOrg\Contracts\ClaimContract[] $interpretedAsClaim
  1073.      *
  1074.      * @return static
  1075.      *
  1076.      * @see https://schema.org/interpretedAsClaim
  1077.      * @see https://pending.schema.org
  1078.      * @link https://github.com/schemaorg/schemaorg/issues/2450
  1079.      */
  1080.     public function interpretedAsClaim($interpretedAsClaim)
  1081.     {
  1082.         return $this->setProperty('interpretedAsClaim'$interpretedAsClaim);
  1083.     }
  1084.     /**
  1085.      * A flag to signal that the item, event, or place is accessible for free.
  1086.      *
  1087.      * @param bool|bool[] $isAccessibleForFree
  1088.      *
  1089.      * @return static
  1090.      *
  1091.      * @see https://schema.org/isAccessibleForFree
  1092.      */
  1093.     public function isAccessibleForFree($isAccessibleForFree)
  1094.     {
  1095.         return $this->setProperty('isAccessibleForFree'$isAccessibleForFree);
  1096.     }
  1097.     /**
  1098.      * A resource from which this work is derived or from which it is a
  1099.      * modification or adaption.
  1100.      *
  1101.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[]|string|string[] $isBasedOn
  1102.      *
  1103.      * @return static
  1104.      *
  1105.      * @see https://schema.org/isBasedOn
  1106.      */
  1107.     public function isBasedOn($isBasedOn)
  1108.     {
  1109.         return $this->setProperty('isBasedOn'$isBasedOn);
  1110.     }
  1111.     /**
  1112.      * A resource that was used in the creation of this resource. This term can
  1113.      * be repeated for multiple sources. For example,
  1114.      * http://example.com/great-multiplication-intro.html.
  1115.      *
  1116.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[]|string|string[] $isBasedOnUrl
  1117.      *
  1118.      * @return static
  1119.      *
  1120.      * @see https://schema.org/isBasedOnUrl
  1121.      */
  1122.     public function isBasedOnUrl($isBasedOnUrl)
  1123.     {
  1124.         return $this->setProperty('isBasedOnUrl'$isBasedOnUrl);
  1125.     }
  1126.     /**
  1127.      * Indicates whether this content is family friendly.
  1128.      *
  1129.      * @param bool|bool[] $isFamilyFriendly
  1130.      *
  1131.      * @return static
  1132.      *
  1133.      * @see https://schema.org/isFamilyFriendly
  1134.      */
  1135.     public function isFamilyFriendly($isFamilyFriendly)
  1136.     {
  1137.         return $this->setProperty('isFamilyFriendly'$isFamilyFriendly);
  1138.     }
  1139.     /**
  1140.      * Indicates an item or CreativeWork that this item, or CreativeWork (in
  1141.      * some sense), is part of.
  1142.      *
  1143.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $isPartOf
  1144.      *
  1145.      * @return static
  1146.      *
  1147.      * @see https://schema.org/isPartOf
  1148.      */
  1149.     public function isPartOf($isPartOf)
  1150.     {
  1151.         return $this->setProperty('isPartOf'$isPartOf);
  1152.     }
  1153.     /**
  1154.      * Keywords or tags used to describe some item. Multiple textual entries in
  1155.      * a keywords list are typically delimited by commas, or by repeating the
  1156.      * property.
  1157.      *
  1158.      * @param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $keywords
  1159.      *
  1160.      * @return static
  1161.      *
  1162.      * @see https://schema.org/keywords
  1163.      */
  1164.     public function keywords($keywords)
  1165.     {
  1166.         return $this->setProperty('keywords'$keywords);
  1167.     }
  1168.     /**
  1169.      * Date on which the content on this web page was last reviewed for accuracy
  1170.      * and/or completeness.
  1171.      *
  1172.      * @param \DateTimeInterface|\DateTimeInterface[] $lastReviewed
  1173.      *
  1174.      * @return static
  1175.      *
  1176.      * @see https://schema.org/lastReviewed
  1177.      */
  1178.     public function lastReviewed($lastReviewed)
  1179.     {
  1180.         return $this->setProperty('lastReviewed'$lastReviewed);
  1181.     }
  1182.     /**
  1183.      * The predominant type or kind characterizing the learning resource. For
  1184.      * example, 'presentation', 'handout'.
  1185.      *
  1186.      * @param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $learningResourceType
  1187.      *
  1188.      * @return static
  1189.      *
  1190.      * @see https://schema.org/learningResourceType
  1191.      */
  1192.     public function learningResourceType($learningResourceType)
  1193.     {
  1194.         return $this->setProperty('learningResourceType'$learningResourceType);
  1195.     }
  1196.     /**
  1197.      * A license document that applies to this content, typically indicated by
  1198.      * URL.
  1199.      *
  1200.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $license
  1201.      *
  1202.      * @return static
  1203.      *
  1204.      * @see https://schema.org/license
  1205.      */
  1206.     public function license($license)
  1207.     {
  1208.         return $this->setProperty('license'$license);
  1209.     }
  1210.     /**
  1211.      * The location where the CreativeWork was created, which may not be the
  1212.      * same as the location depicted in the CreativeWork.
  1213.      *
  1214.      * @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $locationCreated
  1215.      *
  1216.      * @return static
  1217.      *
  1218.      * @see https://schema.org/locationCreated
  1219.      */
  1220.     public function locationCreated($locationCreated)
  1221.     {
  1222.         return $this->setProperty('locationCreated'$locationCreated);
  1223.     }
  1224.     /**
  1225.      * Indicates if this web page element is the main subject of the page.
  1226.      *
  1227.      * @param \Spatie\SchemaOrg\Contracts\WebPageElementContract|\Spatie\SchemaOrg\Contracts\WebPageElementContract[] $mainContentOfPage
  1228.      *
  1229.      * @return static
  1230.      *
  1231.      * @see https://schema.org/mainContentOfPage
  1232.      */
  1233.     public function mainContentOfPage($mainContentOfPage)
  1234.     {
  1235.         return $this->setProperty('mainContentOfPage'$mainContentOfPage);
  1236.     }
  1237.     /**
  1238.      * Indicates the primary entity described in some page or other
  1239.      * CreativeWork.
  1240.      *
  1241.      * @param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $mainEntity
  1242.      *
  1243.      * @return static
  1244.      *
  1245.      * @see https://schema.org/mainEntity
  1246.      */
  1247.     public function mainEntity($mainEntity)
  1248.     {
  1249.         return $this->setProperty('mainEntity'$mainEntity);
  1250.     }
  1251.     /**
  1252.      * Indicates a page (or other CreativeWork) for which this thing is the main
  1253.      * entity being described. See [background
  1254.      * notes](/docs/datamodel.html#mainEntityBackground) for details.
  1255.      *
  1256.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $mainEntityOfPage
  1257.      *
  1258.      * @return static
  1259.      *
  1260.      * @see https://schema.org/mainEntityOfPage
  1261.      */
  1262.     public function mainEntityOfPage($mainEntityOfPage)
  1263.     {
  1264.         return $this->setProperty('mainEntityOfPage'$mainEntityOfPage);
  1265.     }
  1266.     /**
  1267.      * A maintainer of a [[Dataset]], software package
  1268.      * ([[SoftwareApplication]]), or other [[Project]]. A maintainer is a
  1269.      * [[Person]] or [[Organization]] that manages contributions to, and/or
  1270.      * publication of, some (typically complex) artifact. It is common for
  1271.      * distributions of software and data to be based on "upstream" sources.
  1272.      * When [[maintainer]] is applied to a specific version of something e.g. a
  1273.      * particular version or packaging of a [[Dataset]], it is always  possible
  1274.      * that the upstream source has a different maintainer. The [[isBasedOn]]
  1275.      * property can be used to indicate such relationships between datasets to
  1276.      * make the different maintenance roles clear. Similarly in the case of
  1277.      * software, a package may have dedicated maintainers working on integration
  1278.      * into software distributions such as Ubuntu, as well as upstream
  1279.      * maintainers of the underlying work.
  1280.      *
  1281.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $maintainer
  1282.      *
  1283.      * @return static
  1284.      *
  1285.      * @see https://schema.org/maintainer
  1286.      * @see https://pending.schema.org
  1287.      * @link https://github.com/schemaorg/schemaorg/issues/2311
  1288.      */
  1289.     public function maintainer($maintainer)
  1290.     {
  1291.         return $this->setProperty('maintainer'$maintainer);
  1292.     }
  1293.     /**
  1294.      * A material that something is made from, e.g. leather, wool, cotton,
  1295.      * paper.
  1296.      *
  1297.      * @param \Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[]|string|string[] $material
  1298.      *
  1299.      * @return static
  1300.      *
  1301.      * @see https://schema.org/material
  1302.      */
  1303.     public function material($material)
  1304.     {
  1305.         return $this->setProperty('material'$material);
  1306.     }
  1307.     /**
  1308.      * The quantity of the materials being described or an expression of the
  1309.      * physical space they occupy.
  1310.      *
  1311.      * @param \Spatie\SchemaOrg\Contracts\QuantitativeValueContract|\Spatie\SchemaOrg\Contracts\QuantitativeValueContract[]|string|string[] $materialExtent
  1312.      *
  1313.      * @return static
  1314.      *
  1315.      * @see https://schema.org/materialExtent
  1316.      * @see https://pending.schema.org
  1317.      * @link https://github.com/schemaorg/schemaorg/issues/1759
  1318.      */
  1319.     public function materialExtent($materialExtent)
  1320.     {
  1321.         return $this->setProperty('materialExtent'$materialExtent);
  1322.     }
  1323.     /**
  1324.      * Indicates that the CreativeWork contains a reference to, but is not
  1325.      * necessarily about a concept.
  1326.      *
  1327.      * @param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $mentions
  1328.      *
  1329.      * @return static
  1330.      *
  1331.      * @see https://schema.org/mentions
  1332.      */
  1333.     public function mentions($mentions)
  1334.     {
  1335.         return $this->setProperty('mentions'$mentions);
  1336.     }
  1337.     /**
  1338.      * The name of the item.
  1339.      *
  1340.      * @param string|string[] $name
  1341.      *
  1342.      * @return static
  1343.      *
  1344.      * @see https://schema.org/name
  1345.      */
  1346.     public function name($name)
  1347.     {
  1348.         return $this->setProperty('name'$name);
  1349.     }
  1350.     /**
  1351.      * An offer to provide this item&#x2014;for example, an offer to sell a
  1352.      * product, rent the DVD of a movie, perform a service, or give away tickets
  1353.      * to an event. Use [[businessFunction]] to indicate the kind of transaction
  1354.      * offered, i.e. sell, lease, etc. This property can also be used to
  1355.      * describe a [[Demand]]. While this property is listed as expected on a
  1356.      * number of common types, it can be used in others. In that case, using a
  1357.      * second type, such as Product or a subtype of Product, can clarify the
  1358.      * nature of the offer.
  1359.      *
  1360.      * @param \Spatie\SchemaOrg\Contracts\DemandContract|\Spatie\SchemaOrg\Contracts\DemandContract[]|\Spatie\SchemaOrg\Contracts\OfferContract|\Spatie\SchemaOrg\Contracts\OfferContract[] $offers
  1361.      *
  1362.      * @return static
  1363.      *
  1364.      * @see https://schema.org/offers
  1365.      * @link https://github.com/schemaorg/schemaorg/issues/2289
  1366.      */
  1367.     public function offers($offers)
  1368.     {
  1369.         return $this->setProperty('offers'$offers);
  1370.     }
  1371.     /**
  1372.      * A pattern that something has, for example 'polka dot', 'striped',
  1373.      * 'Canadian flag'. Values are typically expressed as text, although links
  1374.      * to controlled value schemes are also supported.
  1375.      *
  1376.      * @param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $pattern
  1377.      *
  1378.      * @return static
  1379.      *
  1380.      * @see https://schema.org/pattern
  1381.      * @see https://pending.schema.org
  1382.      * @link https://github.com/schemaorg/schemaorg/issues/1797
  1383.      */
  1384.     public function pattern($pattern)
  1385.     {
  1386.         return $this->setProperty('pattern'$pattern);
  1387.     }
  1388.     /**
  1389.      * The position of an item in a series or sequence of items.
  1390.      *
  1391.      * @param int|int[]|string|string[] $position
  1392.      *
  1393.      * @return static
  1394.      *
  1395.      * @see https://schema.org/position
  1396.      */
  1397.     public function position($position)
  1398.     {
  1399.         return $this->setProperty('position'$position);
  1400.     }
  1401.     /**
  1402.      * Indicates a potential Action, which describes an idealized action in
  1403.      * which this thing would play an 'object' role.
  1404.      *
  1405.      * @param \Spatie\SchemaOrg\Contracts\ActionContract|\Spatie\SchemaOrg\Contracts\ActionContract[] $potentialAction
  1406.      *
  1407.      * @return static
  1408.      *
  1409.      * @see https://schema.org/potentialAction
  1410.      */
  1411.     public function potentialAction($potentialAction)
  1412.     {
  1413.         return $this->setProperty('potentialAction'$potentialAction);
  1414.     }
  1415.     /**
  1416.      * Indicates the main image on the page.
  1417.      *
  1418.      * @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[] $primaryImageOfPage
  1419.      *
  1420.      * @return static
  1421.      *
  1422.      * @see https://schema.org/primaryImageOfPage
  1423.      */
  1424.     public function primaryImageOfPage($primaryImageOfPage)
  1425.     {
  1426.         return $this->setProperty('primaryImageOfPage'$primaryImageOfPage);
  1427.     }
  1428.     /**
  1429.      * The person or organization who produced the work (e.g. music album,
  1430.      * movie, TV/radio series etc.).
  1431.      *
  1432.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $producer
  1433.      *
  1434.      * @return static
  1435.      *
  1436.      * @see https://schema.org/producer
  1437.      */
  1438.     public function producer($producer)
  1439.     {
  1440.         return $this->setProperty('producer'$producer);
  1441.     }
  1442.     /**
  1443.      * The service provider, service operator, or service performer; the goods
  1444.      * producer. Another party (a seller) may offer those services or goods on
  1445.      * behalf of the provider. A provider may also serve as the seller.
  1446.      *
  1447.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $provider
  1448.      *
  1449.      * @return static
  1450.      *
  1451.      * @see https://schema.org/provider
  1452.      * @see https://pending.schema.org
  1453.      */
  1454.     public function provider($provider)
  1455.     {
  1456.         return $this->setProperty('provider'$provider);
  1457.     }
  1458.     /**
  1459.      * A publication event associated with the item.
  1460.      *
  1461.      * @param \Spatie\SchemaOrg\Contracts\PublicationEventContract|\Spatie\SchemaOrg\Contracts\PublicationEventContract[] $publication
  1462.      *
  1463.      * @return static
  1464.      *
  1465.      * @see https://schema.org/publication
  1466.      */
  1467.     public function publication($publication)
  1468.     {
  1469.         return $this->setProperty('publication'$publication);
  1470.     }
  1471.     /**
  1472.      * The publisher of the creative work.
  1473.      *
  1474.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $publisher
  1475.      *
  1476.      * @return static
  1477.      *
  1478.      * @see https://schema.org/publisher
  1479.      */
  1480.     public function publisher($publisher)
  1481.     {
  1482.         return $this->setProperty('publisher'$publisher);
  1483.     }
  1484.     /**
  1485.      * The publishing division which published the comic.
  1486.      *
  1487.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $publisherImprint
  1488.      *
  1489.      * @return static
  1490.      *
  1491.      * @see https://schema.org/publisherImprint
  1492.      * @see https://bib.schema.org
  1493.      */
  1494.     public function publisherImprint($publisherImprint)
  1495.     {
  1496.         return $this->setProperty('publisherImprint'$publisherImprint);
  1497.     }
  1498.     /**
  1499.      * The publishingPrinciples property indicates (typically via [[URL]]) a
  1500.      * document describing the editorial principles of an [[Organization]] (or
  1501.      * individual, e.g. a [[Person]] writing a blog) that relate to their
  1502.      * activities as a publisher, e.g. ethics or diversity policies. When
  1503.      * applied to a [[CreativeWork]] (e.g. [[NewsArticle]]) the principles are
  1504.      * those of the party primarily responsible for the creation of the
  1505.      * [[CreativeWork]].
  1506.      *
  1507.      * While such policies are most typically expressed in natural language,
  1508.      * sometimes related information (e.g. indicating a [[funder]]) can be
  1509.      * expressed using schema.org terminology.
  1510.      *
  1511.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $publishingPrinciples
  1512.      *
  1513.      * @return static
  1514.      *
  1515.      * @see https://schema.org/publishingPrinciples
  1516.      */
  1517.     public function publishingPrinciples($publishingPrinciples)
  1518.     {
  1519.         return $this->setProperty('publishingPrinciples'$publishingPrinciples);
  1520.     }
  1521.     /**
  1522.      * The Event where the CreativeWork was recorded. The CreativeWork may
  1523.      * capture all or part of the event.
  1524.      *
  1525.      * @param \Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $recordedAt
  1526.      *
  1527.      * @return static
  1528.      *
  1529.      * @see https://schema.org/recordedAt
  1530.      */
  1531.     public function recordedAt($recordedAt)
  1532.     {
  1533.         return $this->setProperty('recordedAt'$recordedAt);
  1534.     }
  1535.     /**
  1536.      * A link related to this web page, for example to other related web pages.
  1537.      *
  1538.      * @param string|string[] $relatedLink
  1539.      *
  1540.      * @return static
  1541.      *
  1542.      * @see https://schema.org/relatedLink
  1543.      */
  1544.     public function relatedLink($relatedLink)
  1545.     {
  1546.         return $this->setProperty('relatedLink'$relatedLink);
  1547.     }
  1548.     /**
  1549.      * The place and time the release was issued, expressed as a
  1550.      * PublicationEvent.
  1551.      *
  1552.      * @param \Spatie\SchemaOrg\Contracts\PublicationEventContract|\Spatie\SchemaOrg\Contracts\PublicationEventContract[] $releasedEvent
  1553.      *
  1554.      * @return static
  1555.      *
  1556.      * @see https://schema.org/releasedEvent
  1557.      */
  1558.     public function releasedEvent($releasedEvent)
  1559.     {
  1560.         return $this->setProperty('releasedEvent'$releasedEvent);
  1561.     }
  1562.     /**
  1563.      * A review of the item.
  1564.      *
  1565.      * @param \Spatie\SchemaOrg\Contracts\ReviewContract|\Spatie\SchemaOrg\Contracts\ReviewContract[] $review
  1566.      *
  1567.      * @return static
  1568.      *
  1569.      * @see https://schema.org/review
  1570.      */
  1571.     public function review($review)
  1572.     {
  1573.         return $this->setProperty('review'$review);
  1574.     }
  1575.     /**
  1576.      * People or organizations that have reviewed the content on this web page
  1577.      * for accuracy and/or completeness.
  1578.      *
  1579.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $reviewedBy
  1580.      *
  1581.      * @return static
  1582.      *
  1583.      * @see https://schema.org/reviewedBy
  1584.      */
  1585.     public function reviewedBy($reviewedBy)
  1586.     {
  1587.         return $this->setProperty('reviewedBy'$reviewedBy);
  1588.     }
  1589.     /**
  1590.      * Review of the item.
  1591.      *
  1592.      * @param \Spatie\SchemaOrg\Contracts\ReviewContract|\Spatie\SchemaOrg\Contracts\ReviewContract[] $reviews
  1593.      *
  1594.      * @return static
  1595.      *
  1596.      * @see https://schema.org/reviews
  1597.      */
  1598.     public function reviews($reviews)
  1599.     {
  1600.         return $this->setProperty('reviews'$reviews);
  1601.     }
  1602.     /**
  1603.      * URL of a reference Web page that unambiguously indicates the item's
  1604.      * identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or
  1605.      * official website.
  1606.      *
  1607.      * @param string|string[] $sameAs
  1608.      *
  1609.      * @return static
  1610.      *
  1611.      * @see https://schema.org/sameAs
  1612.      */
  1613.     public function sameAs($sameAs)
  1614.     {
  1615.         return $this->setProperty('sameAs'$sameAs);
  1616.     }
  1617.     /**
  1618.      * Indicates (by URL or string) a particular version of a schema used in
  1619.      * some CreativeWork. This property was created primarily to
  1620.      *     indicate the use of a specific schema.org release, e.g. ```10.0``` as
  1621.      * a simple string, or more explicitly via URL,
  1622.      * ```https://schema.org/docs/releases.html#v10.0```. There may be
  1623.      * situations in which other schemas might usefully be referenced this way,
  1624.      * e.g.
  1625.      * ```http://dublincore.org/specifications/dublin-core/dces/1999-07-02/```
  1626.      * but this has not been carefully explored in the community.
  1627.      *
  1628.      * @param string|string[] $schemaVersion
  1629.      *
  1630.      * @return static
  1631.      *
  1632.      * @see https://schema.org/schemaVersion
  1633.      */
  1634.     public function schemaVersion($schemaVersion)
  1635.     {
  1636.         return $this->setProperty('schemaVersion'$schemaVersion);
  1637.     }
  1638.     /**
  1639.      * Indicates the date on which the current structured data was generated /
  1640.      * published. Typically used alongside [[sdPublisher]]
  1641.      *
  1642.      * @param \DateTimeInterface|\DateTimeInterface[] $sdDatePublished
  1643.      *
  1644.      * @return static
  1645.      *
  1646.      * @see https://schema.org/sdDatePublished
  1647.      * @see https://pending.schema.org
  1648.      * @link https://github.com/schemaorg/schemaorg/issues/1886
  1649.      */
  1650.     public function sdDatePublished($sdDatePublished)
  1651.     {
  1652.         return $this->setProperty('sdDatePublished'$sdDatePublished);
  1653.     }
  1654.     /**
  1655.      * A license document that applies to this structured data, typically
  1656.      * indicated by URL.
  1657.      *
  1658.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $sdLicense
  1659.      *
  1660.      * @return static
  1661.      *
  1662.      * @see https://schema.org/sdLicense
  1663.      * @see https://pending.schema.org
  1664.      * @link https://github.com/schemaorg/schemaorg/issues/1886
  1665.      */
  1666.     public function sdLicense($sdLicense)
  1667.     {
  1668.         return $this->setProperty('sdLicense'$sdLicense);
  1669.     }
  1670.     /**
  1671.      * Indicates the party responsible for generating and publishing the current
  1672.      * structured data markup, typically in cases where the structured data is
  1673.      * derived automatically from existing published content but published on a
  1674.      * different site. For example, student projects and open data initiatives
  1675.      * often re-publish existing content with more explicitly structured
  1676.      * metadata. The
  1677.      * [[sdPublisher]] property helps make such practices more explicit.
  1678.      *
  1679.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $sdPublisher
  1680.      *
  1681.      * @return static
  1682.      *
  1683.      * @see https://schema.org/sdPublisher
  1684.      * @see https://pending.schema.org
  1685.      * @link https://github.com/schemaorg/schemaorg/issues/1886
  1686.      */
  1687.     public function sdPublisher($sdPublisher)
  1688.     {
  1689.         return $this->setProperty('sdPublisher'$sdPublisher);
  1690.     }
  1691.     /**
  1692.      * One of the more significant URLs on the page. Typically, these are the
  1693.      * non-navigation links that are clicked on the most.
  1694.      *
  1695.      * @param string|string[] $significantLink
  1696.      *
  1697.      * @return static
  1698.      *
  1699.      * @see https://schema.org/significantLink
  1700.      */
  1701.     public function significantLink($significantLink)
  1702.     {
  1703.         return $this->setProperty('significantLink'$significantLink);
  1704.     }
  1705.     /**
  1706.      * The most significant URLs on the page. Typically, these are the
  1707.      * non-navigation links that are clicked on the most.
  1708.      *
  1709.      * @param string|string[] $significantLinks
  1710.      *
  1711.      * @return static
  1712.      *
  1713.      * @see https://schema.org/significantLinks
  1714.      */
  1715.     public function significantLinks($significantLinks)
  1716.     {
  1717.         return $this->setProperty('significantLinks'$significantLinks);
  1718.     }
  1719.     /**
  1720.      * A standardized size of a product or creative work, specified either
  1721.      * through a simple textual string (for example 'XL', '32Wx34L'), a
  1722.      * QuantitativeValue with a unitCode, or a comprehensive and structured
  1723.      * [[SizeSpecification]]; in other cases, the [[width]], [[height]],
  1724.      * [[depth]] and [[weight]] properties may be more applicable.
  1725.      *
  1726.      * @param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|\Spatie\SchemaOrg\Contracts\QuantitativeValueContract|\Spatie\SchemaOrg\Contracts\QuantitativeValueContract[]|\Spatie\SchemaOrg\Contracts\SizeSpecificationContract|\Spatie\SchemaOrg\Contracts\SizeSpecificationContract[]|string|string[] $size
  1727.      *
  1728.      * @return static
  1729.      *
  1730.      * @see https://schema.org/size
  1731.      * @see https://pending.schema.org
  1732.      * @link https://github.com/schemaorg/schemaorg/issues/1797
  1733.      */
  1734.     public function size($size)
  1735.     {
  1736.         return $this->setProperty('size'$size);
  1737.     }
  1738.     /**
  1739.      * The Organization on whose behalf the creator was working.
  1740.      *
  1741.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[] $sourceOrganization
  1742.      *
  1743.      * @return static
  1744.      *
  1745.      * @see https://schema.org/sourceOrganization
  1746.      */
  1747.     public function sourceOrganization($sourceOrganization)
  1748.     {
  1749.         return $this->setProperty('sourceOrganization'$sourceOrganization);
  1750.     }
  1751.     /**
  1752.      * The "spatial" property can be used in cases when more specific properties
  1753.      * (e.g. [[locationCreated]], [[spatialCoverage]], [[contentLocation]]) are
  1754.      * not known to be appropriate.
  1755.      *
  1756.      * @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $spatial
  1757.      *
  1758.      * @return static
  1759.      *
  1760.      * @see https://schema.org/spatial
  1761.      */
  1762.     public function spatial($spatial)
  1763.     {
  1764.         return $this->setProperty('spatial'$spatial);
  1765.     }
  1766.     /**
  1767.      * The spatialCoverage of a CreativeWork indicates the place(s) which are
  1768.      * the focus of the content. It is a subproperty of
  1769.      *       contentLocation intended primarily for more technical and detailed
  1770.      * materials. For example with a Dataset, it indicates
  1771.      *       areas that the dataset describes: a dataset of New York weather
  1772.      * would have spatialCoverage which was the place: the state of New York.
  1773.      *
  1774.      * @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[] $spatialCoverage
  1775.      *
  1776.      * @return static
  1777.      *
  1778.      * @see https://schema.org/spatialCoverage
  1779.      */
  1780.     public function spatialCoverage($spatialCoverage)
  1781.     {
  1782.         return $this->setProperty('spatialCoverage'$spatialCoverage);
  1783.     }
  1784.     /**
  1785.      * Indicates sections of a Web page that are particularly 'speakable' in the
  1786.      * sense of being highlighted as being especially appropriate for
  1787.      * text-to-speech conversion. Other sections of a page may also be usefully
  1788.      * spoken in particular circumstances; the 'speakable' property serves to
  1789.      * indicate the parts most likely to be generally useful for speech.
  1790.      *
  1791.      * The *speakable* property can be repeated an arbitrary number of times,
  1792.      * with three kinds of possible 'content-locator' values:
  1793.      *
  1794.      * 1.) *id-value* URL references - uses *id-value* of an element in the page
  1795.      * being annotated. The simplest use of *speakable* has (potentially
  1796.      * relative) URL values, referencing identified sections of the document
  1797.      * concerned.
  1798.      *
  1799.      * 2.) CSS Selectors - addresses content in the annotated page, e.g. via
  1800.      * class attribute. Use the [[cssSelector]] property.
  1801.      *
  1802.      * 3.)  XPaths - addresses content via XPaths (assuming an XML view of the
  1803.      * content). Use the [[xpath]] property.
  1804.      *
  1805.      *
  1806.      * For more sophisticated markup of speakable sections beyond simple ID
  1807.      * references, either CSS selectors or XPath expressions to pick out
  1808.      * document section(s) as speakable. For this
  1809.      * we define a supporting type, [[SpeakableSpecification]]  which is defined
  1810.      * to be a possible value of the *speakable* property.
  1811.      *
  1812.      * @param \Spatie\SchemaOrg\Contracts\SpeakableSpecificationContract|\Spatie\SchemaOrg\Contracts\SpeakableSpecificationContract[]|string|string[] $speakable
  1813.      *
  1814.      * @return static
  1815.      *
  1816.      * @see https://schema.org/speakable
  1817.      * @link https://github.com/schemaorg/schemaorg/issues/1389
  1818.      */
  1819.     public function speakable($speakable)
  1820.     {
  1821.         return $this->setProperty('speakable'$speakable);
  1822.     }
  1823.     /**
  1824.      * One of the domain specialities to which this web page's content applies.
  1825.      *
  1826.      * @param \Spatie\SchemaOrg\Contracts\SpecialtyContract|\Spatie\SchemaOrg\Contracts\SpecialtyContract[] $specialty
  1827.      *
  1828.      * @return static
  1829.      *
  1830.      * @see https://schema.org/specialty
  1831.      */
  1832.     public function specialty($specialty)
  1833.     {
  1834.         return $this->setProperty('specialty'$specialty);
  1835.     }
  1836.     /**
  1837.      * A person or organization that supports a thing through a pledge, promise,
  1838.      * or financial contribution. E.g. a sponsor of a Medical Study or a
  1839.      * corporate sponsor of an event.
  1840.      *
  1841.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $sponsor
  1842.      *
  1843.      * @return static
  1844.      *
  1845.      * @see https://schema.org/sponsor
  1846.      */
  1847.     public function sponsor($sponsor)
  1848.     {
  1849.         return $this->setProperty('sponsor'$sponsor);
  1850.     }
  1851.     /**
  1852.      * A CreativeWork or Event about this Thing.
  1853.      *
  1854.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $subjectOf
  1855.      *
  1856.      * @return static
  1857.      *
  1858.      * @see https://schema.org/subjectOf
  1859.      * @link https://github.com/schemaorg/schemaorg/issues/1670
  1860.      */
  1861.     public function subjectOf($subjectOf)
  1862.     {
  1863.         return $this->setProperty('subjectOf'$subjectOf);
  1864.     }
  1865.     /**
  1866.      * The item being described is intended to help a person learn the
  1867.      * competency or learning outcome defined by the referenced term.
  1868.      *
  1869.      * @param \Spatie\SchemaOrg\Contracts\DefinedTermContract|\Spatie\SchemaOrg\Contracts\DefinedTermContract[]|string|string[] $teaches
  1870.      *
  1871.      * @return static
  1872.      *
  1873.      * @see https://schema.org/teaches
  1874.      * @see https://pending.schema.org
  1875.      * @link https://github.com/schemaorg/schemaorg/issues/2427
  1876.      */
  1877.     public function teaches($teaches)
  1878.     {
  1879.         return $this->setProperty('teaches'$teaches);
  1880.     }
  1881.     /**
  1882.      * The "temporal" property can be used in cases where more specific
  1883.      * properties
  1884.      * (e.g. [[temporalCoverage]], [[dateCreated]], [[dateModified]],
  1885.      * [[datePublished]]) are not known to be appropriate.
  1886.      *
  1887.      * @param \DateTimeInterface|\DateTimeInterface[]|string|string[] $temporal
  1888.      *
  1889.      * @return static
  1890.      *
  1891.      * @see https://schema.org/temporal
  1892.      */
  1893.     public function temporal($temporal)
  1894.     {
  1895.         return $this->setProperty('temporal'$temporal);
  1896.     }
  1897.     /**
  1898.      * The temporalCoverage of a CreativeWork indicates the period that the
  1899.      * content applies to, i.e. that it describes, either as a DateTime or as a
  1900.      * textual string indicating a time period in [ISO 8601 time interval
  1901.      * format](https://en.wikipedia.org/wiki/ISO_8601#Time_intervals). In
  1902.      *       the case of a Dataset it will typically indicate the relevant time
  1903.      * period in a precise notation (e.g. for a 2011 census dataset, the year
  1904.      * 2011 would be written "2011/2012"). Other forms of content, e.g.
  1905.      * ScholarlyArticle, Book, TVSeries or TVEpisode, may indicate their
  1906.      * temporalCoverage in broader terms - textually or via well-known URL.
  1907.      *       Written works such as books may sometimes have precise temporal
  1908.      * coverage too, e.g. a work set in 1939 - 1945 can be indicated in ISO 8601
  1909.      * interval format format via "1939/1945".
  1910.      *
  1911.      * Open-ended date ranges can be written with ".." in place of the end date.
  1912.      * For example, "2015-11/.." indicates a range beginning in November 2015
  1913.      * and with no specified final date. This is tentative and might be updated
  1914.      * in future when ISO 8601 is officially updated.
  1915.      *
  1916.      * @param \DateTimeInterface|\DateTimeInterface[]|string|string[] $temporalCoverage
  1917.      *
  1918.      * @return static
  1919.      *
  1920.      * @see https://schema.org/temporalCoverage
  1921.      */
  1922.     public function temporalCoverage($temporalCoverage)
  1923.     {
  1924.         return $this->setProperty('temporalCoverage'$temporalCoverage);
  1925.     }
  1926.     /**
  1927.      * The textual content of this CreativeWork.
  1928.      *
  1929.      * @param string|string[] $text
  1930.      *
  1931.      * @return static
  1932.      *
  1933.      * @see https://schema.org/text
  1934.      */
  1935.     public function text($text)
  1936.     {
  1937.         return $this->setProperty('text'$text);
  1938.     }
  1939.     /**
  1940.      * A thumbnail image relevant to the Thing.
  1941.      *
  1942.      * @param string|string[] $thumbnailUrl
  1943.      *
  1944.      * @return static
  1945.      *
  1946.      * @see https://schema.org/thumbnailUrl
  1947.      */
  1948.     public function thumbnailUrl($thumbnailUrl)
  1949.     {
  1950.         return $this->setProperty('thumbnailUrl'$thumbnailUrl);
  1951.     }
  1952.     /**
  1953.      * Approximate or typical time it takes to work with or through this
  1954.      * learning resource for the typical intended target audience, e.g. 'PT30M',
  1955.      * 'PT1H25M'.
  1956.      *
  1957.      * @param \Spatie\SchemaOrg\Contracts\DurationContract|\Spatie\SchemaOrg\Contracts\DurationContract[] $timeRequired
  1958.      *
  1959.      * @return static
  1960.      *
  1961.      * @see https://schema.org/timeRequired
  1962.      */
  1963.     public function timeRequired($timeRequired)
  1964.     {
  1965.         return $this->setProperty('timeRequired'$timeRequired);
  1966.     }
  1967.     /**
  1968.      * The work that this work has been translated from. E.g. 物种起源 is a
  1969.      * translationOf “On the Origin of Species”.
  1970.      *
  1971.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[] $translationOfWork
  1972.      *
  1973.      * @return static
  1974.      *
  1975.      * @see https://schema.org/translationOfWork
  1976.      * @see https://bib.schema.org
  1977.      */
  1978.     public function translationOfWork($translationOfWork)
  1979.     {
  1980.         return $this->setProperty('translationOfWork'$translationOfWork);
  1981.     }
  1982.     /**
  1983.      * Organization or person who adapts a creative work to different languages,
  1984.      * regional differences and technical requirements of a target market, or
  1985.      * that translates during some event.
  1986.      *
  1987.      * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $translator
  1988.      *
  1989.      * @return static
  1990.      *
  1991.      * @see https://schema.org/translator
  1992.      */
  1993.     public function translator($translator)
  1994.     {
  1995.         return $this->setProperty('translator'$translator);
  1996.     }
  1997.     /**
  1998.      * The typical expected age range, e.g. '7-9', '11-'.
  1999.      *
  2000.      * @param string|string[] $typicalAgeRange
  2001.      *
  2002.      * @return static
  2003.      *
  2004.      * @see https://schema.org/typicalAgeRange
  2005.      */
  2006.     public function typicalAgeRange($typicalAgeRange)
  2007.     {
  2008.         return $this->setProperty('typicalAgeRange'$typicalAgeRange);
  2009.     }
  2010.     /**
  2011.      * URL of the item.
  2012.      *
  2013.      * @param string|string[] $url
  2014.      *
  2015.      * @return static
  2016.      *
  2017.      * @see https://schema.org/url
  2018.      */
  2019.     public function url($url)
  2020.     {
  2021.         return $this->setProperty('url'$url);
  2022.     }
  2023.     /**
  2024.      * The schema.org [[usageInfo]] property indicates further information about
  2025.      * a [[CreativeWork]]. This property is applicable both to works that are
  2026.      * freely available and to those that require payment or other transactions.
  2027.      * It can reference additional information, e.g. community expectations on
  2028.      * preferred linking and citation conventions, as well as purchasing
  2029.      * details. For something that can be commercially licensed, usageInfo can
  2030.      * provide detailed, resource-specific information about licensing options.
  2031.      *
  2032.      * This property can be used alongside the license property which indicates
  2033.      * license(s) applicable to some piece of content. The usageInfo property
  2034.      * can provide information about other licensing options, e.g. acquiring
  2035.      * commercial usage rights for an image that is also available under
  2036.      * non-commercial creative commons licenses.
  2037.      *
  2038.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $usageInfo
  2039.      *
  2040.      * @return static
  2041.      *
  2042.      * @see https://schema.org/usageInfo
  2043.      * @see https://pending.schema.org
  2044.      * @link https://github.com/schemaorg/schemaorg/issues/2454
  2045.      */
  2046.     public function usageInfo($usageInfo)
  2047.     {
  2048.         return $this->setProperty('usageInfo'$usageInfo);
  2049.     }
  2050.     /**
  2051.      * The version of the CreativeWork embodied by a specified resource.
  2052.      *
  2053.      * @param float|float[]|int|int[]|string|string[] $version
  2054.      *
  2055.      * @return static
  2056.      *
  2057.      * @see https://schema.org/version
  2058.      */
  2059.     public function version($version)
  2060.     {
  2061.         return $this->setProperty('version'$version);
  2062.     }
  2063.     /**
  2064.      * An embedded video object.
  2065.      *
  2066.      * @param \Spatie\SchemaOrg\Contracts\ClipContract|\Spatie\SchemaOrg\Contracts\ClipContract[]|\Spatie\SchemaOrg\Contracts\VideoObjectContract|\Spatie\SchemaOrg\Contracts\VideoObjectContract[] $video
  2067.      *
  2068.      * @return static
  2069.      *
  2070.      * @see https://schema.org/video
  2071.      */
  2072.     public function video($video)
  2073.     {
  2074.         return $this->setProperty('video'$video);
  2075.     }
  2076.     /**
  2077.      * Example/instance/realization/derivation of the concept of this creative
  2078.      * work. E.g. the paperback edition, first edition, or e-book.
  2079.      *
  2080.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[] $workExample
  2081.      *
  2082.      * @return static
  2083.      *
  2084.      * @see https://schema.org/workExample
  2085.      * @link http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_bibex
  2086.      */
  2087.     public function workExample($workExample)
  2088.     {
  2089.         return $this->setProperty('workExample'$workExample);
  2090.     }
  2091.     /**
  2092.      * A work that is a translation of the content of this work. E.g. 西遊記
  2093.      * has an English workTranslation “Journey to the West”, a German
  2094.      * workTranslation “Monkeys Pilgerfahrt” and a Vietnamese  translation
  2095.      * Tây du ký bình khảo.
  2096.      *
  2097.      * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[] $workTranslation
  2098.      *
  2099.      * @return static
  2100.      *
  2101.      * @see https://schema.org/workTranslation
  2102.      * @see https://bib.schema.org
  2103.      */
  2104.     public function workTranslation($workTranslation)
  2105.     {
  2106.         return $this->setProperty('workTranslation'$workTranslation);
  2107.     }
  2108. }