1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/AttachmentInfo.php

144 lines
3.9 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* AttachmentInfo File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Beta\Microsoft\Graph\Model;
/**
* AttachmentInfo class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class AttachmentInfo extends Entity
{
/**
* Gets the attachmentType
* The type of the attachment. The possible values are: file, item, reference. Required.
*
* @return AttachmentType|null The attachmentType
*/
public function getAttachmentType()
{
if (array_key_exists("attachmentType", $this->_propDict)) {
if (is_a($this->_propDict["attachmentType"], "\Beta\Microsoft\Graph\Model\AttachmentType") || is_null($this->_propDict["attachmentType"])) {
return $this->_propDict["attachmentType"];
} else {
$this->_propDict["attachmentType"] = new AttachmentType($this->_propDict["attachmentType"]);
return $this->_propDict["attachmentType"];
}
}
return null;
}
/**
* Sets the attachmentType
* The type of the attachment. The possible values are: file, item, reference. Required.
*
* @param AttachmentType $val The value to assign to the attachmentType
*
* @return AttachmentInfo The AttachmentInfo
*/
public function setAttachmentType($val)
{
$this->_propDict["attachmentType"] = $val;
return $this;
}
/**
* Gets the contentType
* The nature of the data in the attachment. Optional.
*
* @return string|null The contentType
*/
public function getContentType()
{
if (array_key_exists("contentType", $this->_propDict)) {
return $this->_propDict["contentType"];
} else {
return null;
}
}
/**
* Sets the contentType
* The nature of the data in the attachment. Optional.
*
* @param string $val The value of the contentType
*
* @return AttachmentInfo
*/
public function setContentType($val)
{
$this->_propDict["contentType"] = $val;
return $this;
}
/**
* Gets the name
* The display name of the attachment. This can be a descriptive string and doesn't have to be the actual file name. Required.
*
* @return string|null The name
*/
public function getName()
{
if (array_key_exists("name", $this->_propDict)) {
return $this->_propDict["name"];
} else {
return null;
}
}
/**
* Sets the name
* The display name of the attachment. This can be a descriptive string and doesn't have to be the actual file name. Required.
*
* @param string $val The value of the name
*
* @return AttachmentInfo
*/
public function setName($val)
{
$this->_propDict["name"] = $val;
return $this;
}
/**
* Gets the size
* The length of the attachment in bytes. Required.
*
* @return int|null The size
*/
public function getSize()
{
if (array_key_exists("size", $this->_propDict)) {
return $this->_propDict["size"];
} else {
return null;
}
}
/**
* Sets the size
* The length of the attachment in bytes. Required.
*
* @param int $val The value of the size
*
* @return AttachmentInfo
*/
public function setSize($val)
{
$this->_propDict["size"] = $val;
return $this;
}
}