code
stringlengths 17
296k
| docstring
stringlengths 30
30.3k
| func_name
stringlengths 1
89
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 7
153
| url
stringlengths 51
209
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function getSchedulingPolicy()
{
if (array_key_exists("schedulingPolicy", $this->_propDict)) {
if (is_a($this->_propDict["schedulingPolicy"], "\Beta\Microsoft\Graph\Model\BookingSchedulingPolicy") || is_null($this->_propDict["schedulingPolicy"])) {
return $this->_propDict["schedulingPolicy"];
} else {
$this->_propDict["schedulingPolicy"] = new BookingSchedulingPolicy($this->_propDict["schedulingPolicy"]);
return $this->_propDict["schedulingPolicy"];
}
}
return null;
} | Gets the schedulingPolicy
The set of policies that determine how appointments for this type of service should be created and managed.
@return BookingSchedulingPolicy|null The schedulingPolicy | getSchedulingPolicy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | MIT |
public function setSchedulingPolicy($val)
{
$this->_propDict["schedulingPolicy"] = $val;
return $this;
} | Sets the schedulingPolicy
The set of policies that determine how appointments for this type of service should be created and managed.
@param BookingSchedulingPolicy $val The schedulingPolicy
@return BookingService | setSchedulingPolicy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | MIT |
public function getSmsNotificationsEnabled()
{
if (array_key_exists("smsNotificationsEnabled", $this->_propDict)) {
return $this->_propDict["smsNotificationsEnabled"];
} else {
return null;
}
} | Gets the smsNotificationsEnabled
True indicates SMS notifications can be sent to the customers for the appointment of the service. Default value is false.
@return bool|null The smsNotificationsEnabled | getSmsNotificationsEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | MIT |
public function setSmsNotificationsEnabled($val)
{
$this->_propDict["smsNotificationsEnabled"] = boolval($val);
return $this;
} | Sets the smsNotificationsEnabled
True indicates SMS notifications can be sent to the customers for the appointment of the service. Default value is false.
@param bool $val The smsNotificationsEnabled
@return BookingService | setSmsNotificationsEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | MIT |
public function getStaffMemberIds()
{
if (array_key_exists("staffMemberIds", $this->_propDict)) {
return $this->_propDict["staffMemberIds"];
} else {
return null;
}
} | Gets the staffMemberIds
Represents those staff members who provide this service.
@return array|null The staffMemberIds | getStaffMemberIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | MIT |
public function setStaffMemberIds($val)
{
$this->_propDict["staffMemberIds"] = $val;
return $this;
} | Sets the staffMemberIds
Represents those staff members who provide this service.
@param string[] $val The staffMemberIds
@return BookingService | setStaffMemberIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | MIT |
public function getWebUrl()
{
if (array_key_exists("webUrl", $this->_propDict)) {
return $this->_propDict["webUrl"];
} else {
return null;
}
} | Gets the webUrl
The URL a customer uses to access the service.
@return string|null The webUrl | getWebUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | MIT |
public function setWebUrl($val)
{
$this->_propDict["webUrl"] = $val;
return $this;
} | Sets the webUrl
The URL a customer uses to access the service.
@param string $val The webUrl
@return BookingService | setWebUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingService.php | MIT |
public function getAssignmentFilterManagementType()
{
if (array_key_exists("assignmentFilterManagementType", $this->_propDict)) {
if (is_a($this->_propDict["assignmentFilterManagementType"], "\Beta\Microsoft\Graph\Model\AssignmentFilterManagementType") || is_null($this->_propDict["assignmentFilterManagementType"])) {
return $this->_propDict["assignmentFilterManagementType"];
} else {
$this->_propDict["assignmentFilterManagementType"] = new AssignmentFilterManagementType($this->_propDict["assignmentFilterManagementType"]);
return $this->_propDict["assignmentFilterManagementType"];
}
}
return null;
} | Gets the assignmentFilterManagementType
Indicates filter is applied to either 'devices' or 'apps' management type. Possible values are devices, apps. Default filter will be applied to 'devices'. Possible values are: devices, apps, unknownFutureValue.
@return AssignmentFilterManagementType|null The assignmentFilterManagementType | getAssignmentFilterManagementType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function setAssignmentFilterManagementType($val)
{
$this->_propDict["assignmentFilterManagementType"] = $val;
return $this;
} | Sets the assignmentFilterManagementType
Indicates filter is applied to either 'devices' or 'apps' management type. Possible values are devices, apps. Default filter will be applied to 'devices'. Possible values are: devices, apps, unknownFutureValue.
@param AssignmentFilterManagementType $val The assignmentFilterManagementType
@return DeviceAndAppManagementAssignmentFilter | setAssignmentFilterManagementType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function getCreatedDateTime()
{
if (array_key_exists("createdDateTime", $this->_propDict)) {
if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) {
return $this->_propDict["createdDateTime"];
} else {
$this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]);
return $this->_propDict["createdDateTime"];
}
}
return null;
} | Gets the createdDateTime
The creation time of the assignment filter. The value cannot be modified and is automatically populated during new assignment filter process. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'.
@return \DateTime|null The createdDateTime | getCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
} | Sets the createdDateTime
The creation time of the assignment filter. The value cannot be modified and is automatically populated during new assignment filter process. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'.
@param \DateTime $val The createdDateTime
@return DeviceAndAppManagementAssignmentFilter | setCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function getDescription()
{
if (array_key_exists("description", $this->_propDict)) {
return $this->_propDict["description"];
} else {
return null;
}
} | Gets the description
Optional description of the Assignment Filter.
@return string|null The description | getDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function setDescription($val)
{
$this->_propDict["description"] = $val;
return $this;
} | Sets the description
Optional description of the Assignment Filter.
@param string $val The description
@return DeviceAndAppManagementAssignmentFilter | setDescription | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
} | Gets the displayName
The name of the Assignment Filter.
@return string|null The displayName | getDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
} | Sets the displayName
The name of the Assignment Filter.
@param string $val The displayName
@return DeviceAndAppManagementAssignmentFilter | setDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function getLastModifiedDateTime()
{
if (array_key_exists("lastModifiedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) {
return $this->_propDict["lastModifiedDateTime"];
} else {
$this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]);
return $this->_propDict["lastModifiedDateTime"];
}
}
return null;
} | Gets the lastModifiedDateTime
Last modified time of the Assignment Filter. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
@return \DateTime|null The lastModifiedDateTime | getLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
} | Sets the lastModifiedDateTime
Last modified time of the Assignment Filter. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
@param \DateTime $val The lastModifiedDateTime
@return DeviceAndAppManagementAssignmentFilter | setLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function getPayloads()
{
if (array_key_exists("payloads", $this->_propDict)) {
return $this->_propDict["payloads"];
} else {
return null;
}
} | Gets the payloads
Indicates associated assignments for a specific filter.
@return array|null The payloads | getPayloads | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function setPayloads($val)
{
$this->_propDict["payloads"] = $val;
return $this;
} | Sets the payloads
Indicates associated assignments for a specific filter.
@param PayloadByFilter[] $val The payloads
@return DeviceAndAppManagementAssignmentFilter | setPayloads | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function getPlatform()
{
if (array_key_exists("platform", $this->_propDict)) {
if (is_a($this->_propDict["platform"], "\Beta\Microsoft\Graph\Model\DevicePlatformType") || is_null($this->_propDict["platform"])) {
return $this->_propDict["platform"];
} else {
$this->_propDict["platform"] = new DevicePlatformType($this->_propDict["platform"]);
return $this->_propDict["platform"];
}
}
return null;
} | Gets the platform
Indicates filter is applied to which flatform. Possible values are android,androidForWork,iOS,macOS,windowsPhone81,windows81AndLater,windows10AndLater,androidWorkProfile, unknown, androidAOSP,androidMobileApplicationManagement, iOSMobileApplicationManagement. Default filter will be applied to 'unknown'. Possible values are: android, androidForWork, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, unknown, androidAOSP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
@return DevicePlatformType|null The platform | getPlatform | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function setPlatform($val)
{
$this->_propDict["platform"] = $val;
return $this;
} | Sets the platform
Indicates filter is applied to which flatform. Possible values are android,androidForWork,iOS,macOS,windowsPhone81,windows81AndLater,windows10AndLater,androidWorkProfile, unknown, androidAOSP,androidMobileApplicationManagement, iOSMobileApplicationManagement. Default filter will be applied to 'unknown'. Possible values are: android, androidForWork, iOS, macOS, windowsPhone81, windows81AndLater, windows10AndLater, androidWorkProfile, unknown, androidAOSP, androidMobileApplicationManagement, iOSMobileApplicationManagement, unknownFutureValue.
@param DevicePlatformType $val The platform
@return DeviceAndAppManagementAssignmentFilter | setPlatform | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function getRoleScopeTags()
{
if (array_key_exists("roleScopeTags", $this->_propDict)) {
return $this->_propDict["roleScopeTags"];
} else {
return null;
}
} | Gets the roleScopeTags
Indicates role scope tags assigned for the assignment filter.
@return array|null The roleScopeTags | getRoleScopeTags | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function setRoleScopeTags($val)
{
$this->_propDict["roleScopeTags"] = $val;
return $this;
} | Sets the roleScopeTags
Indicates role scope tags assigned for the assignment filter.
@param string[] $val The roleScopeTags
@return DeviceAndAppManagementAssignmentFilter | setRoleScopeTags | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function getRule()
{
if (array_key_exists("rule", $this->_propDict)) {
return $this->_propDict["rule"];
} else {
return null;
}
} | Gets the rule
Rule definition of the assignment filter.
@return string|null The rule | getRule | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function setRule($val)
{
$this->_propDict["rule"] = $val;
return $this;
} | Sets the rule
Rule definition of the assignment filter.
@param string $val The rule
@return DeviceAndAppManagementAssignmentFilter | setRule | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceAndAppManagementAssignmentFilter.php | MIT |
public function getDeviceMacAddress()
{
if (array_key_exists("deviceMacAddress", $this->_propDict)) {
return $this->_propDict["deviceMacAddress"];
} else {
return null;
}
} | Gets the deviceMacAddress
Device Mac address.
@return string|null The deviceMacAddress | getDeviceMacAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | MIT |
public function setDeviceMacAddress($val)
{
$this->_propDict["deviceMacAddress"] = $val;
return $this;
} | Sets the deviceMacAddress
Device Mac address.
@param string $val The deviceMacAddress
@return WindowsInformationProtectionDeviceRegistration | setDeviceMacAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | MIT |
public function getDeviceName()
{
if (array_key_exists("deviceName", $this->_propDict)) {
return $this->_propDict["deviceName"];
} else {
return null;
}
} | Gets the deviceName
Device name.
@return string|null The deviceName | getDeviceName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | MIT |
public function setDeviceName($val)
{
$this->_propDict["deviceName"] = $val;
return $this;
} | Sets the deviceName
Device name.
@param string $val The deviceName
@return WindowsInformationProtectionDeviceRegistration | setDeviceName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | MIT |
public function getDeviceRegistrationId()
{
if (array_key_exists("deviceRegistrationId", $this->_propDict)) {
return $this->_propDict["deviceRegistrationId"];
} else {
return null;
}
} | Gets the deviceRegistrationId
Device identifier for this device registration record.
@return string|null The deviceRegistrationId | getDeviceRegistrationId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | MIT |
public function setDeviceRegistrationId($val)
{
$this->_propDict["deviceRegistrationId"] = $val;
return $this;
} | Sets the deviceRegistrationId
Device identifier for this device registration record.
@param string $val The deviceRegistrationId
@return WindowsInformationProtectionDeviceRegistration | setDeviceRegistrationId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | MIT |
public function getDeviceType()
{
if (array_key_exists("deviceType", $this->_propDict)) {
return $this->_propDict["deviceType"];
} else {
return null;
}
} | Gets the deviceType
Device type, for example, Windows laptop VS Windows phone.
@return string|null The deviceType | getDeviceType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | MIT |
public function setDeviceType($val)
{
$this->_propDict["deviceType"] = $val;
return $this;
} | Sets the deviceType
Device type, for example, Windows laptop VS Windows phone.
@param string $val The deviceType
@return WindowsInformationProtectionDeviceRegistration | setDeviceType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | MIT |
public function getLastCheckInDateTime()
{
if (array_key_exists("lastCheckInDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastCheckInDateTime"], "\DateTime") || is_null($this->_propDict["lastCheckInDateTime"])) {
return $this->_propDict["lastCheckInDateTime"];
} else {
$this->_propDict["lastCheckInDateTime"] = new \DateTime($this->_propDict["lastCheckInDateTime"]);
return $this->_propDict["lastCheckInDateTime"];
}
}
return null;
} | Gets the lastCheckInDateTime
Last checkin time of the device.
@return \DateTime|null The lastCheckInDateTime | getLastCheckInDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | MIT |
public function setLastCheckInDateTime($val)
{
$this->_propDict["lastCheckInDateTime"] = $val;
return $this;
} | Sets the lastCheckInDateTime
Last checkin time of the device.
@param \DateTime $val The lastCheckInDateTime
@return WindowsInformationProtectionDeviceRegistration | setLastCheckInDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | MIT |
public function getUserId()
{
if (array_key_exists("userId", $this->_propDict)) {
return $this->_propDict["userId"];
} else {
return null;
}
} | Gets the userId
UserId associated with this device registration record.
@return string|null The userId | getUserId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | MIT |
public function setUserId($val)
{
$this->_propDict["userId"] = $val;
return $this;
} | Sets the userId
UserId associated with this device registration record.
@param string $val The userId
@return WindowsInformationProtectionDeviceRegistration | setUserId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsInformationProtectionDeviceRegistration.php | MIT |
public function getUserIdentityType()
{
if (array_key_exists("userIdentityType", $this->_propDict)) {
if (is_a($this->_propDict["userIdentityType"], "\Microsoft\Graph\Model\TeamworkUserIdentityType") || is_null($this->_propDict["userIdentityType"])) {
return $this->_propDict["userIdentityType"];
} else {
$this->_propDict["userIdentityType"] = new TeamworkUserIdentityType($this->_propDict["userIdentityType"]);
return $this->_propDict["userIdentityType"];
}
}
return null;
} | Gets the userIdentityType
Type of user. Possible values are: aadUser, onPremiseAadUser, anonymousGuest, federatedUser, personalMicrosoftAccountUser, skypeUser, phoneUser, unknownFutureValue and emailUser.
@return TeamworkUserIdentityType|null The userIdentityType | getUserIdentityType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TeamworkUserIdentity.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TeamworkUserIdentity.php | MIT |
public function setUserIdentityType($val)
{
$this->_propDict["userIdentityType"] = $val;
return $this;
} | Sets the userIdentityType
Type of user. Possible values are: aadUser, onPremiseAadUser, anonymousGuest, federatedUser, personalMicrosoftAccountUser, skypeUser, phoneUser, unknownFutureValue and emailUser.
@param TeamworkUserIdentityType $val The value to assign to the userIdentityType
@return TeamworkUserIdentity The TeamworkUserIdentity | setUserIdentityType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/TeamworkUserIdentity.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/TeamworkUserIdentity.php | MIT |
public function __construct($stream, $options = [])
{
if (!is_resource($stream)) {
throw new \InvalidArgumentException('Stream must be a resource');
}
if (isset($options['size'])) {
$this->size = $options['size'];
}
$this->customMetadata = isset($options['metadata'])
? $options['metadata']
: [];
$this->stream = $stream;
$meta = stream_get_meta_data($this->stream);
$this->seekable = $meta['seekable'];
$this->readable = (bool)preg_match(self::READABLE_MODES, $meta['mode']);
$this->writable = (bool)preg_match(self::WRITABLE_MODES, $meta['mode']);
$this->uri = $this->getMetadata('uri');
} | This constructor accepts an associative array of options.
- size: (int) If a read stream would otherwise have an indeterminate
size, but the size is known due to foreknowledge, then you can
provide that size, in bytes.
- metadata: (array) Any additional metadata to return when the metadata
of the stream is accessed.
@param resource $stream Stream resource to wrap.
@param array $options Associative array of options.
@throws \InvalidArgumentException if the stream is not a stream resource | __construct | php | xiebruce/PicUploader | vendor/guzzlehttp/psr7/src/Stream.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzlehttp/psr7/src/Stream.php | MIT |
public function __destruct()
{
$this->close();
} | Closes the stream when the destructed | __destruct | php | xiebruce/PicUploader | vendor/guzzlehttp/psr7/src/Stream.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzlehttp/psr7/src/Stream.php | MIT |
public function getDeviceRestartBehavior()
{
if (array_key_exists("deviceRestartBehavior", $this->_propDict)) {
if (is_a($this->_propDict["deviceRestartBehavior"], "\Beta\Microsoft\Graph\Model\Win32LobAppRestartBehavior") || is_null($this->_propDict["deviceRestartBehavior"])) {
return $this->_propDict["deviceRestartBehavior"];
} else {
$this->_propDict["deviceRestartBehavior"] = new Win32LobAppRestartBehavior($this->_propDict["deviceRestartBehavior"]);
return $this->_propDict["deviceRestartBehavior"];
}
}
return null;
} | Gets the deviceRestartBehavior
Device restart behavior. Possible values are: basedOnReturnCode, allow, suppress, force.
@return Win32LobAppRestartBehavior|null The deviceRestartBehavior | getDeviceRestartBehavior | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Win32LobAppInstallExperience.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Win32LobAppInstallExperience.php | MIT |
public function setDeviceRestartBehavior($val)
{
$this->_propDict["deviceRestartBehavior"] = $val;
return $this;
} | Sets the deviceRestartBehavior
Device restart behavior. Possible values are: basedOnReturnCode, allow, suppress, force.
@param Win32LobAppRestartBehavior $val The value to assign to the deviceRestartBehavior
@return Win32LobAppInstallExperience The Win32LobAppInstallExperience | setDeviceRestartBehavior | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Win32LobAppInstallExperience.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Win32LobAppInstallExperience.php | MIT |
public function getRunAsAccount()
{
if (array_key_exists("runAsAccount", $this->_propDict)) {
if (is_a($this->_propDict["runAsAccount"], "\Beta\Microsoft\Graph\Model\RunAsAccountType") || is_null($this->_propDict["runAsAccount"])) {
return $this->_propDict["runAsAccount"];
} else {
$this->_propDict["runAsAccount"] = new RunAsAccountType($this->_propDict["runAsAccount"]);
return $this->_propDict["runAsAccount"];
}
}
return null;
} | Gets the runAsAccount
Indicates the type of execution context the app runs in. Possible values are: system, user.
@return RunAsAccountType|null The runAsAccount | getRunAsAccount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Win32LobAppInstallExperience.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Win32LobAppInstallExperience.php | MIT |
public function setRunAsAccount($val)
{
$this->_propDict["runAsAccount"] = $val;
return $this;
} | Sets the runAsAccount
Indicates the type of execution context the app runs in. Possible values are: system, user.
@param RunAsAccountType $val The value to assign to the runAsAccount
@return Win32LobAppInstallExperience The Win32LobAppInstallExperience | setRunAsAccount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Win32LobAppInstallExperience.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Win32LobAppInstallExperience.php | MIT |
public function getCustomKeyIdentifier()
{
if (array_key_exists("customKeyIdentifier", $this->_propDict)) {
if (is_a($this->_propDict["customKeyIdentifier"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["customKeyIdentifier"])) {
return $this->_propDict["customKeyIdentifier"];
} else {
$this->_propDict["customKeyIdentifier"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["customKeyIdentifier"]);
return $this->_propDict["customKeyIdentifier"];
}
}
return null;
} | Gets the customKeyIdentifier
A 40-character binary type that can be used to identify the credential. Optional. When not provided in the payload, defaults to the thumbprint of the certificate.
@return \GuzzleHttp\Psr7\Stream|null The customKeyIdentifier | getCustomKeyIdentifier | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function setCustomKeyIdentifier($val)
{
$this->_propDict["customKeyIdentifier"] = $val;
return $this;
} | Sets the customKeyIdentifier
A 40-character binary type that can be used to identify the credential. Optional. When not provided in the payload, defaults to the thumbprint of the certificate.
@param \GuzzleHttp\Psr7\Stream $val The value to assign to the customKeyIdentifier
@return KeyCredential The KeyCredential | setCustomKeyIdentifier | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
} | Gets the displayName
Friendly name for the key. Optional.
@return string|null The displayName | getDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
} | Sets the displayName
Friendly name for the key. Optional.
@param string $val The value of the displayName
@return KeyCredential | setDisplayName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function getEndDateTime()
{
if (array_key_exists("endDateTime", $this->_propDict)) {
if (is_a($this->_propDict["endDateTime"], "\DateTime") || is_null($this->_propDict["endDateTime"])) {
return $this->_propDict["endDateTime"];
} else {
$this->_propDict["endDateTime"] = new \DateTime($this->_propDict["endDateTime"]);
return $this->_propDict["endDateTime"];
}
}
return null;
} | Gets the endDateTime
The date and time at which the credential expires. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
@return \DateTime|null The endDateTime | getEndDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function setEndDateTime($val)
{
$this->_propDict["endDateTime"] = $val;
return $this;
} | Sets the endDateTime
The date and time at which the credential expires. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
@param \DateTime $val The value to assign to the endDateTime
@return KeyCredential The KeyCredential | setEndDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function getKey()
{
if (array_key_exists("key", $this->_propDict)) {
if (is_a($this->_propDict["key"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["key"])) {
return $this->_propDict["key"];
} else {
$this->_propDict["key"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["key"]);
return $this->_propDict["key"];
}
}
return null;
} | Gets the key
The certificate's raw data in byte array converted to Base64 string. Returned only on $select for a single object, that is, GET applications/{applicationId}?$select=keyCredentials or GET servicePrincipals/{servicePrincipalId}?$select=keyCredentials; otherwise, it is always null.
@return \GuzzleHttp\Psr7\Stream|null The key | getKey | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function setKey($val)
{
$this->_propDict["key"] = $val;
return $this;
} | Sets the key
The certificate's raw data in byte array converted to Base64 string. Returned only on $select for a single object, that is, GET applications/{applicationId}?$select=keyCredentials or GET servicePrincipals/{servicePrincipalId}?$select=keyCredentials; otherwise, it is always null.
@param \GuzzleHttp\Psr7\Stream $val The value to assign to the key
@return KeyCredential The KeyCredential | setKey | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function getKeyId()
{
if (array_key_exists("keyId", $this->_propDict)) {
return $this->_propDict["keyId"];
} else {
return null;
}
} | Gets the keyId
The unique identifier (GUID) for the key.
@return string|null The keyId | getKeyId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function setKeyId($val)
{
$this->_propDict["keyId"] = $val;
return $this;
} | Sets the keyId
The unique identifier (GUID) for the key.
@param string $val The value of the keyId
@return KeyCredential | setKeyId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function getStartDateTime()
{
if (array_key_exists("startDateTime", $this->_propDict)) {
if (is_a($this->_propDict["startDateTime"], "\DateTime") || is_null($this->_propDict["startDateTime"])) {
return $this->_propDict["startDateTime"];
} else {
$this->_propDict["startDateTime"] = new \DateTime($this->_propDict["startDateTime"]);
return $this->_propDict["startDateTime"];
}
}
return null;
} | Gets the startDateTime
The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
@return \DateTime|null The startDateTime | getStartDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function setStartDateTime($val)
{
$this->_propDict["startDateTime"] = $val;
return $this;
} | Sets the startDateTime
The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
@param \DateTime $val The value to assign to the startDateTime
@return KeyCredential The KeyCredential | setStartDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function getType()
{
if (array_key_exists("type", $this->_propDict)) {
return $this->_propDict["type"];
} else {
return null;
}
} | Gets the type
The type of key credential; for example, Symmetric, AsymmetricX509Cert.
@return string|null The type | getType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function setType($val)
{
$this->_propDict["type"] = $val;
return $this;
} | Sets the type
The type of key credential; for example, Symmetric, AsymmetricX509Cert.
@param string $val The value of the type
@return KeyCredential | setType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function getUsage()
{
if (array_key_exists("usage", $this->_propDict)) {
return $this->_propDict["usage"];
} else {
return null;
}
} | Gets the usage
A string that describes the purpose for which the key can be used; for example, Verify.
@return string|null The usage | getUsage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function setUsage($val)
{
$this->_propDict["usage"] = $val;
return $this;
} | Sets the usage
A string that describes the purpose for which the key can be used; for example, Verify.
@param string $val The value of the usage
@return KeyCredential | setUsage | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/KeyCredential.php | MIT |
public function getAutomaticUserConsentSettings()
{
if (array_key_exists("automaticUserConsentSettings", $this->_propDict)) {
if (is_a($this->_propDict["automaticUserConsentSettings"], "\Beta\Microsoft\Graph\Model\InboundOutboundPolicyConfiguration") || is_null($this->_propDict["automaticUserConsentSettings"])) {
return $this->_propDict["automaticUserConsentSettings"];
} else {
$this->_propDict["automaticUserConsentSettings"] = new InboundOutboundPolicyConfiguration($this->_propDict["automaticUserConsentSettings"]);
return $this->_propDict["automaticUserConsentSettings"];
}
}
return null;
} | Gets the automaticUserConsentSettings
Determines the default configuration for automatic user consent settings. The inboundAllowed and outboundAllowed properties are always false and cannot be updated in the default configuration. Read-only.
@return InboundOutboundPolicyConfiguration|null The automaticUserConsentSettings | getAutomaticUserConsentSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function setAutomaticUserConsentSettings($val)
{
$this->_propDict["automaticUserConsentSettings"] = $val;
return $this;
} | Sets the automaticUserConsentSettings
Determines the default configuration for automatic user consent settings. The inboundAllowed and outboundAllowed properties are always false and cannot be updated in the default configuration. Read-only.
@param InboundOutboundPolicyConfiguration $val The automaticUserConsentSettings
@return CrossTenantAccessPolicyConfigurationDefault | setAutomaticUserConsentSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function getB2bCollaborationInbound()
{
if (array_key_exists("b2bCollaborationInbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bCollaborationInbound"], "\Beta\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bCollaborationInbound"])) {
return $this->_propDict["b2bCollaborationInbound"];
} else {
$this->_propDict["b2bCollaborationInbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bCollaborationInbound"]);
return $this->_propDict["b2bCollaborationInbound"];
}
}
return null;
} | Gets the b2bCollaborationInbound
Defines your default configuration for users from other organizations accessing your resources via Azure AD B2B collaboration.
@return CrossTenantAccessPolicyB2BSetting|null The b2bCollaborationInbound | getB2bCollaborationInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function setB2bCollaborationInbound($val)
{
$this->_propDict["b2bCollaborationInbound"] = $val;
return $this;
} | Sets the b2bCollaborationInbound
Defines your default configuration for users from other organizations accessing your resources via Azure AD B2B collaboration.
@param CrossTenantAccessPolicyB2BSetting $val The b2bCollaborationInbound
@return CrossTenantAccessPolicyConfigurationDefault | setB2bCollaborationInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function getB2bCollaborationOutbound()
{
if (array_key_exists("b2bCollaborationOutbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bCollaborationOutbound"], "\Beta\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bCollaborationOutbound"])) {
return $this->_propDict["b2bCollaborationOutbound"];
} else {
$this->_propDict["b2bCollaborationOutbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bCollaborationOutbound"]);
return $this->_propDict["b2bCollaborationOutbound"];
}
}
return null;
} | Gets the b2bCollaborationOutbound
Defines your default configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration.
@return CrossTenantAccessPolicyB2BSetting|null The b2bCollaborationOutbound | getB2bCollaborationOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function setB2bCollaborationOutbound($val)
{
$this->_propDict["b2bCollaborationOutbound"] = $val;
return $this;
} | Sets the b2bCollaborationOutbound
Defines your default configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration.
@param CrossTenantAccessPolicyB2BSetting $val The b2bCollaborationOutbound
@return CrossTenantAccessPolicyConfigurationDefault | setB2bCollaborationOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function getB2bDirectConnectInbound()
{
if (array_key_exists("b2bDirectConnectInbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bDirectConnectInbound"], "\Beta\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bDirectConnectInbound"])) {
return $this->_propDict["b2bDirectConnectInbound"];
} else {
$this->_propDict["b2bDirectConnectInbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bDirectConnectInbound"]);
return $this->_propDict["b2bDirectConnectInbound"];
}
}
return null;
} | Gets the b2bDirectConnectInbound
Defines your default configuration for users from other organizations accessing your resources via Azure AD B2B direct connect.
@return CrossTenantAccessPolicyB2BSetting|null The b2bDirectConnectInbound | getB2bDirectConnectInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function setB2bDirectConnectInbound($val)
{
$this->_propDict["b2bDirectConnectInbound"] = $val;
return $this;
} | Sets the b2bDirectConnectInbound
Defines your default configuration for users from other organizations accessing your resources via Azure AD B2B direct connect.
@param CrossTenantAccessPolicyB2BSetting $val The b2bDirectConnectInbound
@return CrossTenantAccessPolicyConfigurationDefault | setB2bDirectConnectInbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function getB2bDirectConnectOutbound()
{
if (array_key_exists("b2bDirectConnectOutbound", $this->_propDict)) {
if (is_a($this->_propDict["b2bDirectConnectOutbound"], "\Beta\Microsoft\Graph\Model\CrossTenantAccessPolicyB2BSetting") || is_null($this->_propDict["b2bDirectConnectOutbound"])) {
return $this->_propDict["b2bDirectConnectOutbound"];
} else {
$this->_propDict["b2bDirectConnectOutbound"] = new CrossTenantAccessPolicyB2BSetting($this->_propDict["b2bDirectConnectOutbound"]);
return $this->_propDict["b2bDirectConnectOutbound"];
}
}
return null;
} | Gets the b2bDirectConnectOutbound
Defines your default configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B direct connect.
@return CrossTenantAccessPolicyB2BSetting|null The b2bDirectConnectOutbound | getB2bDirectConnectOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function setB2bDirectConnectOutbound($val)
{
$this->_propDict["b2bDirectConnectOutbound"] = $val;
return $this;
} | Sets the b2bDirectConnectOutbound
Defines your default configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B direct connect.
@param CrossTenantAccessPolicyB2BSetting $val The b2bDirectConnectOutbound
@return CrossTenantAccessPolicyConfigurationDefault | setB2bDirectConnectOutbound | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function getInboundTrust()
{
if (array_key_exists("inboundTrust", $this->_propDict)) {
if (is_a($this->_propDict["inboundTrust"], "\Beta\Microsoft\Graph\Model\CrossTenantAccessPolicyInboundTrust") || is_null($this->_propDict["inboundTrust"])) {
return $this->_propDict["inboundTrust"];
} else {
$this->_propDict["inboundTrust"] = new CrossTenantAccessPolicyInboundTrust($this->_propDict["inboundTrust"]);
return $this->_propDict["inboundTrust"];
}
}
return null;
} | Gets the inboundTrust
Determines the default configuration for trusting other Conditional Access claims from external Azure AD organizations.
@return CrossTenantAccessPolicyInboundTrust|null The inboundTrust | getInboundTrust | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function setInboundTrust($val)
{
$this->_propDict["inboundTrust"] = $val;
return $this;
} | Sets the inboundTrust
Determines the default configuration for trusting other Conditional Access claims from external Azure AD organizations.
@param CrossTenantAccessPolicyInboundTrust $val The inboundTrust
@return CrossTenantAccessPolicyConfigurationDefault | setInboundTrust | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function getIsServiceDefault()
{
if (array_key_exists("isServiceDefault", $this->_propDict)) {
return $this->_propDict["isServiceDefault"];
} else {
return null;
}
} | Gets the isServiceDefault
If true, the default configuration is set to the system default configuration. If false, the default settings have been customized.
@return bool|null The isServiceDefault | getIsServiceDefault | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function setIsServiceDefault($val)
{
$this->_propDict["isServiceDefault"] = boolval($val);
return $this;
} | Sets the isServiceDefault
If true, the default configuration is set to the system default configuration. If false, the default settings have been customized.
@param bool $val The isServiceDefault
@return CrossTenantAccessPolicyConfigurationDefault | setIsServiceDefault | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/CrossTenantAccessPolicyConfigurationDefault.php | MIT |
public function getCreatedDateTime()
{
if (array_key_exists("createdDateTime", $this->_propDict)) {
if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) {
return $this->_propDict["createdDateTime"];
} else {
$this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]);
return $this->_propDict["createdDateTime"];
}
}
return null;
} | Gets the createdDateTime
The UTC date and time the file was created on a client.
@return \DateTime|null The createdDateTime | getCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSystemInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSystemInfo.php | MIT |
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
} | Sets the createdDateTime
The UTC date and time the file was created on a client.
@param \DateTime $val The value to assign to the createdDateTime
@return FileSystemInfo The FileSystemInfo | setCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSystemInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSystemInfo.php | MIT |
public function getLastAccessedDateTime()
{
if (array_key_exists("lastAccessedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastAccessedDateTime"], "\DateTime") || is_null($this->_propDict["lastAccessedDateTime"])) {
return $this->_propDict["lastAccessedDateTime"];
} else {
$this->_propDict["lastAccessedDateTime"] = new \DateTime($this->_propDict["lastAccessedDateTime"]);
return $this->_propDict["lastAccessedDateTime"];
}
}
return null;
} | Gets the lastAccessedDateTime
The UTC date and time the file was last accessed. Available for the recent file list only.
@return \DateTime|null The lastAccessedDateTime | getLastAccessedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSystemInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSystemInfo.php | MIT |
public function setLastAccessedDateTime($val)
{
$this->_propDict["lastAccessedDateTime"] = $val;
return $this;
} | Sets the lastAccessedDateTime
The UTC date and time the file was last accessed. Available for the recent file list only.
@param \DateTime $val The value to assign to the lastAccessedDateTime
@return FileSystemInfo The FileSystemInfo | setLastAccessedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSystemInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSystemInfo.php | MIT |
public function getLastModifiedDateTime()
{
if (array_key_exists("lastModifiedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) {
return $this->_propDict["lastModifiedDateTime"];
} else {
$this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]);
return $this->_propDict["lastModifiedDateTime"];
}
}
return null;
} | Gets the lastModifiedDateTime
The UTC date and time the file was last modified on a client.
@return \DateTime|null The lastModifiedDateTime | getLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSystemInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSystemInfo.php | MIT |
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
} | Sets the lastModifiedDateTime
The UTC date and time the file was last modified on a client.
@param \DateTime $val The value to assign to the lastModifiedDateTime
@return FileSystemInfo The FileSystemInfo | setLastModifiedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSystemInfo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/FileSystemInfo.php | MIT |
public function getMembershipRuleEvaluationDetails()
{
if (array_key_exists("membershipRuleEvaluationDetails", $this->_propDict)) {
if (is_a($this->_propDict["membershipRuleEvaluationDetails"], "\Beta\Microsoft\Graph\Model\ExpressionEvaluationDetails") || is_null($this->_propDict["membershipRuleEvaluationDetails"])) {
return $this->_propDict["membershipRuleEvaluationDetails"];
} else {
$this->_propDict["membershipRuleEvaluationDetails"] = new ExpressionEvaluationDetails($this->_propDict["membershipRuleEvaluationDetails"]);
return $this->_propDict["membershipRuleEvaluationDetails"];
}
}
return null;
} | Gets the membershipRuleEvaluationDetails
@return ExpressionEvaluationDetails|null The membershipRuleEvaluationDetails | getMembershipRuleEvaluationDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MembershipRuleEvaluationDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MembershipRuleEvaluationDetails.php | MIT |
public function setMembershipRuleEvaluationDetails($val)
{
$this->_propDict["membershipRuleEvaluationDetails"] = $val;
return $this;
} | Sets the membershipRuleEvaluationDetails
@param ExpressionEvaluationDetails $val The value to assign to the membershipRuleEvaluationDetails
@return MembershipRuleEvaluationDetails The MembershipRuleEvaluationDetails | setMembershipRuleEvaluationDetails | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MembershipRuleEvaluationDetails.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MembershipRuleEvaluationDetails.php | MIT |
public function getCameraMake()
{
if (array_key_exists("cameraMake", $this->_propDict)) {
return $this->_propDict["cameraMake"];
} else {
return null;
}
} | Gets the cameraMake
Camera manufacturer. Read-only.
@return string|null The cameraMake | getCameraMake | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function setCameraMake($val)
{
$this->_propDict["cameraMake"] = $val;
return $this;
} | Sets the cameraMake
Camera manufacturer. Read-only.
@param string $val The value of the cameraMake
@return Photo | setCameraMake | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function getCameraModel()
{
if (array_key_exists("cameraModel", $this->_propDict)) {
return $this->_propDict["cameraModel"];
} else {
return null;
}
} | Gets the cameraModel
Camera model. Read-only.
@return string|null The cameraModel | getCameraModel | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function setCameraModel($val)
{
$this->_propDict["cameraModel"] = $val;
return $this;
} | Sets the cameraModel
Camera model. Read-only.
@param string $val The value of the cameraModel
@return Photo | setCameraModel | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function getExposureDenominator()
{
if (array_key_exists("exposureDenominator", $this->_propDict)) {
return $this->_propDict["exposureDenominator"];
} else {
return null;
}
} | Gets the exposureDenominator
The denominator for the exposure time fraction from the camera. Read-only.
@return float|null The exposureDenominator | getExposureDenominator | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function setExposureDenominator($val)
{
$this->_propDict["exposureDenominator"] = $val;
return $this;
} | Sets the exposureDenominator
The denominator for the exposure time fraction from the camera. Read-only.
@param float $val The value of the exposureDenominator
@return Photo | setExposureDenominator | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function getExposureNumerator()
{
if (array_key_exists("exposureNumerator", $this->_propDict)) {
return $this->_propDict["exposureNumerator"];
} else {
return null;
}
} | Gets the exposureNumerator
The numerator for the exposure time fraction from the camera. Read-only.
@return float|null The exposureNumerator | getExposureNumerator | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function setExposureNumerator($val)
{
$this->_propDict["exposureNumerator"] = $val;
return $this;
} | Sets the exposureNumerator
The numerator for the exposure time fraction from the camera. Read-only.
@param float $val The value of the exposureNumerator
@return Photo | setExposureNumerator | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function getFNumber()
{
if (array_key_exists("fNumber", $this->_propDict)) {
return $this->_propDict["fNumber"];
} else {
return null;
}
} | Gets the fNumber
The F-stop value from the camera. Read-only.
@return float|null The fNumber | getFNumber | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function setFNumber($val)
{
$this->_propDict["fNumber"] = $val;
return $this;
} | Sets the fNumber
The F-stop value from the camera. Read-only.
@param float $val The value of the fNumber
@return Photo | setFNumber | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function getFocalLength()
{
if (array_key_exists("focalLength", $this->_propDict)) {
return $this->_propDict["focalLength"];
} else {
return null;
}
} | Gets the focalLength
The focal length from the camera. Read-only.
@return float|null The focalLength | getFocalLength | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function setFocalLength($val)
{
$this->_propDict["focalLength"] = $val;
return $this;
} | Sets the focalLength
The focal length from the camera. Read-only.
@param float $val The value of the focalLength
@return Photo | setFocalLength | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function getIso()
{
if (array_key_exists("iso", $this->_propDict)) {
return $this->_propDict["iso"];
} else {
return null;
}
} | Gets the iso
The ISO value from the camera. Read-only.
@return int|null The iso | getIso | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function setIso($val)
{
$this->_propDict["iso"] = $val;
return $this;
} | Sets the iso
The ISO value from the camera. Read-only.
@param int $val The value of the iso
@return Photo | setIso | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function getOrientation()
{
if (array_key_exists("orientation", $this->_propDict)) {
return $this->_propDict["orientation"];
} else {
return null;
}
} | Gets the orientation
The orientation value from the camera. Writable on OneDrive Personal.
@return int|null The orientation | getOrientation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
public function setOrientation($val)
{
$this->_propDict["orientation"] = $val;
return $this;
} | Sets the orientation
The orientation value from the camera. Writable on OneDrive Personal.
@param int $val The value of the orientation
@return Photo | setOrientation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Photo.php | MIT |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.