Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions src/Model/BooleanColumn.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* BooleanColumn File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright 2016 Microsoft Corporation
* @license https://opensource.org/licenses/MIT MIT License
* @version GIT: 0.1.0
* @link https://graph.microsoft.io/
*/
namespace Microsoft\Graph\Model;
/**
* BooleanColumn class
*
* @category Model
* @package Microsoft.Graph
* @copyright 2016 Microsoft Corporation
* @license https://opensource.org/licenses/MIT MIT License
* @version Release: 0.1.0
* @link https://graph.microsoft.io/
*/
class BooleanColumn extends Entity
{
}
106 changes: 106 additions & 0 deletions src/Model/CalculatedColumn.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* CalculatedColumn File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright 2016 Microsoft Corporation
* @license https://opensource.org/licenses/MIT MIT License
* @version GIT: 0.1.0
* @link https://graph.microsoft.io/
*/
namespace Microsoft\Graph\Model;
/**
* CalculatedColumn class
*
* @category Model
* @package Microsoft.Graph
* @copyright 2016 Microsoft Corporation
* @license https://opensource.org/licenses/MIT MIT License
* @version Release: 0.1.0
* @link https://graph.microsoft.io/
*/
class CalculatedColumn extends Entity
{
/**
* Gets the format
*
* @return string The format
*/
public function getFormat()
{
if (array_key_exists("format", $this->_propDict)) {
return $this->_propDict["format"];
} else {
return null;
}
}

/**
* Sets the format
*
* @param string $val The value of the format
*
* @return CalculatedColumn
*/
public function setFormat($val)
{
$this->_propDict["format"] = $val;
return $this;
}
/**
* Gets the formula
*
* @return string The formula
*/
public function getFormula()
{
if (array_key_exists("formula", $this->_propDict)) {
return $this->_propDict["formula"];
} else {
return null;
}
}

/**
* Sets the formula
*
* @param string $val The value of the formula
*
* @return CalculatedColumn
*/
public function setFormula($val)
{
$this->_propDict["formula"] = $val;
return $this;
}
/**
* Gets the outputType
*
* @return string The outputType
*/
public function getOutputType()
{
if (array_key_exists("outputType", $this->_propDict)) {
return $this->_propDict["outputType"];
} else {
return null;
}
}

/**
* Sets the outputType
*
* @param string $val The value of the outputType
*
* @return CalculatedColumn
*/
public function setOutputType($val)
{
$this->_propDict["outputType"] = $val;
return $this;
}
}
12 changes: 10 additions & 2 deletions src/Model/Calendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public function setColor($val)

/**
* Gets the changeKey
* Identifies the version of the calendar object. Every time the calendar is changed, ChangeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.
* Identifies the version of the calendar object. Every time the calendar is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.
*
* @return string The changeKey
*/
Expand All @@ -105,7 +105,7 @@ public function getChangeKey()

/**
* Sets the changeKey
* Identifies the version of the calendar object. Every time the calendar is changed, ChangeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.
* Identifies the version of the calendar object. Every time the calendar is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only.
*
* @param string $val The changeKey
*
Expand All @@ -119,6 +119,7 @@ public function setChangeKey($val)

/**
* Gets the canShare
* True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it.
*
* @return bool The canShare
*/
Expand All @@ -133,6 +134,7 @@ public function getCanShare()

/**
* Sets the canShare
* True if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it.
*
* @param bool $val The canShare
*
Expand All @@ -146,6 +148,7 @@ public function setCanShare($val)

/**
* Gets the canViewPrivateItems
* True if the user can read calendar items that have been marked private, false otherwise.
*
* @return bool The canViewPrivateItems
*/
Expand All @@ -160,6 +163,7 @@ public function getCanViewPrivateItems()

/**
* Sets the canViewPrivateItems
* True if the user can read calendar items that have been marked private, false otherwise.
*
* @param bool $val The canViewPrivateItems
*
Expand All @@ -173,6 +177,7 @@ public function setCanViewPrivateItems($val)

/**
* Gets the canEdit
* True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access.
*
* @return bool The canEdit
*/
Expand All @@ -187,6 +192,7 @@ public function getCanEdit()

/**
* Sets the canEdit
* True if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access.
*
* @param bool $val The canEdit
*
Expand All @@ -200,6 +206,7 @@ public function setCanEdit($val)

/**
* Gets the owner
* If set, this represents the user who created or added the calendar. For a calendar that the user created or added, the owner property is set to the user. For a calendar shared with the user, the owner property is set to the person who shared that calendar with the user.
*
* @return EmailAddress The owner
*/
Expand All @@ -218,6 +225,7 @@ public function getOwner()

/**
* Sets the owner
* If set, this represents the user who created or added the calendar. For a calendar that the user created or added, the owner property is set to the user. For a calendar shared with the user, the owner property is set to the person who shared that calendar with the user.
*
* @param EmailAddress $val The owner
*
Expand Down
106 changes: 106 additions & 0 deletions src/Model/ChoiceColumn.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* ChoiceColumn File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright 2016 Microsoft Corporation
* @license https://opensource.org/licenses/MIT MIT License
* @version GIT: 0.1.0
* @link https://graph.microsoft.io/
*/
namespace Microsoft\Graph\Model;
/**
* ChoiceColumn class
*
* @category Model
* @package Microsoft.Graph
* @copyright 2016 Microsoft Corporation
* @license https://opensource.org/licenses/MIT MIT License
* @version Release: 0.1.0
* @link https://graph.microsoft.io/
*/
class ChoiceColumn extends Entity
{
/**
* Gets the allowTextEntry
*
* @return bool The allowTextEntry
*/
public function getAllowTextEntry()
{
if (array_key_exists("allowTextEntry", $this->_propDict)) {
return $this->_propDict["allowTextEntry"];
} else {
return null;
}
}

/**
* Sets the allowTextEntry
*
* @param bool $val The value of the allowTextEntry
*
* @return ChoiceColumn
*/
public function setAllowTextEntry($val)
{
$this->_propDict["allowTextEntry"] = $val;
return $this;
}
/**
* Gets the choices
*
* @return string The choices
*/
public function getChoices()
{
if (array_key_exists("choices", $this->_propDict)) {
return $this->_propDict["choices"];
} else {
return null;
}
}

/**
* Sets the choices
*
* @param string $val The value of the choices
*
* @return ChoiceColumn
*/
public function setChoices($val)
{
$this->_propDict["choices"] = $val;
return $this;
}
/**
* Gets the displayAs
*
* @return string The displayAs
*/
public function getDisplayAs()
{
if (array_key_exists("displayAs", $this->_propDict)) {
return $this->_propDict["displayAs"];
} else {
return null;
}
}

/**
* Sets the displayAs
*
* @param string $val The value of the displayAs
*
* @return ChoiceColumn
*/
public function setDisplayAs($val)
{
$this->_propDict["displayAs"] = $val;
return $this;
}
}
Loading