@@ -55,6 +55,10 @@ class ThingData implements \JsonSerializable, ArrayAccess, ModelInterface
5555 'title ' => 'string ' ,
5656 'url ' => 'string ' ,
5757 'url_overridden_by_dest ' => 'string ' ,
58+ 'link_id ' => 'string ' ,
59+ 'link_author ' => 'string ' ,
60+ 'link_title ' => 'string ' ,
61+ 'link_permalink ' => 'string ' ,
5862 'body ' => 'string ' ,
5963 ];
6064
@@ -79,6 +83,10 @@ class ThingData implements \JsonSerializable, ArrayAccess, ModelInterface
7983 'title ' => null ,
8084 'url ' => null ,
8185 'url_overridden_by_dest ' => null ,
86+ 'link_id ' => null ,
87+ 'link_author ' => null ,
88+ 'link_title ' => null ,
89+ 'link_permalink ' => null ,
8290 'body ' => null ,
8391 ];
8492
@@ -102,6 +110,10 @@ class ThingData implements \JsonSerializable, ArrayAccess, ModelInterface
102110 'title ' => 'title ' ,
103111 'url ' => 'url ' ,
104112 'url_overridden_by_dest ' => 'url_overridden_by_dest ' ,
113+ 'link_id ' => 'link_id ' ,
114+ 'link_author ' => 'link_author ' ,
115+ 'link_title ' => 'link_title ' ,
116+ 'link_permalink ' => 'link_permalink ' ,
105117 'body ' => 'body ' ,
106118 ];
107119
@@ -124,6 +136,10 @@ class ThingData implements \JsonSerializable, ArrayAccess, ModelInterface
124136 'title ' => 'setTitle ' ,
125137 'url ' => 'setUrl ' ,
126138 'url_overridden_by_dest ' => 'setUrlOverriddenByDest ' ,
139+ 'link_id ' => 'setLinkId ' ,
140+ 'link_author ' => 'setLinkAuthor ' ,
141+ 'link_title ' => 'setLinkTitle ' ,
142+ 'link_permalink ' => 'setLinkPermalink ' ,
127143 'body ' => 'setBody ' ,
128144 ];
129145
@@ -146,6 +162,10 @@ class ThingData implements \JsonSerializable, ArrayAccess, ModelInterface
146162 'title ' => 'getTitle ' ,
147163 'url ' => 'getUrl ' ,
148164 'url_overridden_by_dest ' => 'getUrlOverriddenByDest ' ,
165+ 'link_id ' => 'getLinkId ' ,
166+ 'link_author ' => 'getLinkAuthor ' ,
167+ 'link_title ' => 'getLinkTitle ' ,
168+ 'link_permalink ' => 'getLinkPermalink ' ,
149169 'body ' => 'getBody ' ,
150170 ];
151171
@@ -177,6 +197,10 @@ public function __construct(array $data = null)
177197 $ this ->container ['title ' ] = $ data ['title ' ] ?? null ;
178198 $ this ->container ['url ' ] = $ data ['url ' ] ?? null ;
179199 $ this ->container ['url_overridden_by_dest ' ] = $ data ['url_overridden_by_dest ' ] ?? null ;
200+ $ this ->container ['link_id ' ] = $ data ['link_id ' ] ?? null ;
201+ $ this ->container ['link_author ' ] = $ data ['link_author ' ] ?? null ;
202+ $ this ->container ['link_title ' ] = $ data ['link_title ' ] ?? null ;
203+ $ this ->container ['link_permalink ' ] = $ data ['link_permalink ' ] ?? null ;
180204 $ this ->container ['body ' ] = $ data ['body ' ] ?? null ;
181205 }
182206
@@ -574,6 +598,86 @@ public function setUrlOverriddenByDest($url_overridden_by_dest): self
574598 return $ this ;
575599 }
576600
601+ /**
602+ * Gets link_id.
603+ */
604+ public function getLinkId (): ?string
605+ {
606+ return $ this ->container ['link_id ' ];
607+ }
608+
609+ /**
610+ * Sets link_id.
611+ *
612+ * @param null|string $link_id link_id
613+ */
614+ public function setLinkId ($ link_id ): self
615+ {
616+ $ this ->container ['link_id ' ] = $ link_id ;
617+
618+ return $ this ;
619+ }
620+
621+ /**
622+ * Gets link_author.
623+ */
624+ public function getLinkAuthor (): ?string
625+ {
626+ return $ this ->container ['link_author ' ];
627+ }
628+
629+ /**
630+ * Sets link_author.
631+ *
632+ * @param null|string $link_author link_author
633+ */
634+ public function setLinkAuthor ($ link_author ): self
635+ {
636+ $ this ->container ['link_author ' ] = $ link_author ;
637+
638+ return $ this ;
639+ }
640+
641+ /**
642+ * Gets link_title.
643+ */
644+ public function getLinkTitle (): ?string
645+ {
646+ return $ this ->container ['link_title ' ];
647+ }
648+
649+ /**
650+ * Sets link_title.
651+ *
652+ * @param null|string $link_title link_title
653+ */
654+ public function setLinkTitle ($ link_title ): self
655+ {
656+ $ this ->container ['link_title ' ] = $ link_title ;
657+
658+ return $ this ;
659+ }
660+
661+ /**
662+ * Gets link_permalink.
663+ */
664+ public function getLinkPermalink (): ?string
665+ {
666+ return $ this ->container ['link_permalink ' ];
667+ }
668+
669+ /**
670+ * Sets link_permalink.
671+ *
672+ * @param null|string $link_permalink link_permalink
673+ */
674+ public function setLinkPermalink ($ link_permalink ): self
675+ {
676+ $ this ->container ['link_permalink ' ] = $ link_permalink ;
677+
678+ return $ this ;
679+ }
680+
577681 /**
578682 * Gets body.
579683 */
0 commit comments