vendor/spatie/schema-org/src/ImageObject.php line 16

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