"post_user_info", ]; /** * The kind of this entity. Always blogger#postUserInfo. * * @var string */ public $kind; protected $postType = Post::class; protected $postDataType = ''; protected $postUserInfoType = PostPerUserInfo::class; protected $postUserInfoDataType = ''; /** * The kind of this entity. Always blogger#postUserInfo. * * @param string $kind */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * The Post resource. * * @param Post $post */ public function setPost(Post $post) { $this->post = $post; } /** * @return Post */ public function getPost() { return $this->post; } /** * Information about a User for the Post. * * @param PostPerUserInfo $postUserInfo */ public function setPostUserInfo(PostPerUserInfo $postUserInfo) { $this->postUserInfo = $postUserInfo; } /** * @return PostPerUserInfo */ public function getPostUserInfo() { return $this->postUserInfo; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PostUserInfo::class, 'Google_Service_Blogger_PostUserInfo');