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 setCollectionId($val)
{
$this->_propDict["collectionId"] = $val;
return $this;
} | Sets the collectionId
The collection Id that is the target of the assignment.
@param string $val The value of the collectionId
@return ConfigurationManagerCollectionAssignmentTarget | setCollectionId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/ConfigurationManagerCollectionAssignmentTarget.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/ConfigurationManagerCollectionAssignmentTarget.php | MIT |
public function getApiConnectors()
{
if (array_key_exists("apiConnectors", $this->_propDict)) {
return $this->_propDict["apiConnectors"];
} else {
return null;
}
} | Gets the apiConnectors
Represents entry point for API connectors.
@return array|null The apiConnectors | getApiConnectors | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | MIT |
public function setApiConnectors($val)
{
$this->_propDict["apiConnectors"] = $val;
return $this;
} | Sets the apiConnectors
Represents entry point for API connectors.
@param IdentityApiConnector[] $val The apiConnectors
@return IdentityContainer | setApiConnectors | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | MIT |
public function getB2xUserFlows()
{
if (array_key_exists("b2xUserFlows", $this->_propDict)) {
return $this->_propDict["b2xUserFlows"];
} else {
return null;
}
} | Gets the b2xUserFlows
Represents entry point for B2X/self-service sign-up identity userflows.
@return array|null The b2xUserFlows | getB2xUserFlows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | MIT |
public function setB2xUserFlows($val)
{
$this->_propDict["b2xUserFlows"] = $val;
return $this;
} | Sets the b2xUserFlows
Represents entry point for B2X/self-service sign-up identity userflows.
@param B2xIdentityUserFlow[] $val The b2xUserFlows
@return IdentityContainer | setB2xUserFlows | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | MIT |
public function getUserFlowAttributes()
{
if (array_key_exists("userFlowAttributes", $this->_propDict)) {
return $this->_propDict["userFlowAttributes"];
} else {
return null;
}
} | Gets the userFlowAttributes
Represents entry point for identity userflow attributes.
@return array|null The userFlowAttributes | getUserFlowAttributes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | MIT |
public function setUserFlowAttributes($val)
{
$this->_propDict["userFlowAttributes"] = $val;
return $this;
} | Sets the userFlowAttributes
Represents entry point for identity userflow attributes.
@param IdentityUserFlowAttribute[] $val The userFlowAttributes
@return IdentityContainer | setUserFlowAttributes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | MIT |
public function getConditionalAccess()
{
if (array_key_exists("conditionalAccess", $this->_propDict)) {
if (is_a($this->_propDict["conditionalAccess"], "\Microsoft\Graph\Model\ConditionalAccessRoot") || is_null($this->_propDict["conditionalAccess"])) {
return $this->_propDict["conditionalAccess"];
} else {
$this->_propDict["conditionalAccess"] = new ConditionalAccessRoot($this->_propDict["conditionalAccess"]);
return $this->_propDict["conditionalAccess"];
}
}
return null;
} | Gets the conditionalAccess
the entry point for the Conditional Access (CA) object model.
@return ConditionalAccessRoot|null The conditionalAccess | getConditionalAccess | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | MIT |
public function setConditionalAccess($val)
{
$this->_propDict["conditionalAccess"] = $val;
return $this;
} | Sets the conditionalAccess
the entry point for the Conditional Access (CA) object model.
@param ConditionalAccessRoot $val The conditionalAccess
@return IdentityContainer | setConditionalAccess | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/IdentityContainer.php | MIT |
public function getAdditionalInformation()
{
if (array_key_exists("additionalInformation", $this->_propDict)) {
return $this->_propDict["additionalInformation"];
} else {
return null;
}
} | Gets the additionalInformation
Additional information that is sent to the customer when an appointment is confirmed.
@return string|null The additionalInformation | getAdditionalInformation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setAdditionalInformation($val)
{
$this->_propDict["additionalInformation"] = $val;
return $this;
} | Sets the additionalInformation
Additional information that is sent to the customer when an appointment is confirmed.
@param string $val The additionalInformation
@return BookingAppointment | setAdditionalInformation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getAnonymousJoinWebUrl()
{
if (array_key_exists("anonymousJoinWebUrl", $this->_propDict)) {
return $this->_propDict["anonymousJoinWebUrl"];
} else {
return null;
}
} | Gets the anonymousJoinWebUrl
The URL of the meeting to join anonymously.
@return string|null The anonymousJoinWebUrl | getAnonymousJoinWebUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setAnonymousJoinWebUrl($val)
{
$this->_propDict["anonymousJoinWebUrl"] = $val;
return $this;
} | Sets the anonymousJoinWebUrl
The URL of the meeting to join anonymously.
@param string $val The anonymousJoinWebUrl
@return BookingAppointment | setAnonymousJoinWebUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getCustomerEmailAddress()
{
if (array_key_exists("customerEmailAddress", $this->_propDict)) {
return $this->_propDict["customerEmailAddress"];
} else {
return null;
}
} | Gets the customerEmailAddress
The SMTP address of the bookingCustomer who is booking the appointment.
@return string|null The customerEmailAddress | getCustomerEmailAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setCustomerEmailAddress($val)
{
$this->_propDict["customerEmailAddress"] = $val;
return $this;
} | Sets the customerEmailAddress
The SMTP address of the bookingCustomer who is booking the appointment.
@param string $val The customerEmailAddress
@return BookingAppointment | setCustomerEmailAddress | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getCustomerId()
{
if (array_key_exists("customerId", $this->_propDict)) {
return $this->_propDict["customerId"];
} else {
return null;
}
} | Gets the customerId
If CustomerId is not specified when an appointment is created then a new customer is created based on the appointment customer information. Once set, the customerId should be considered immutable.
@return string|null The customerId | getCustomerId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setCustomerId($val)
{
$this->_propDict["customerId"] = $val;
return $this;
} | Sets the customerId
If CustomerId is not specified when an appointment is created then a new customer is created based on the appointment customer information. Once set, the customerId should be considered immutable.
@param string $val The customerId
@return BookingAppointment | setCustomerId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getCustomerLocation()
{
if (array_key_exists("customerLocation", $this->_propDict)) {
if (is_a($this->_propDict["customerLocation"], "\Beta\Microsoft\Graph\Model\Location") || is_null($this->_propDict["customerLocation"])) {
return $this->_propDict["customerLocation"];
} else {
$this->_propDict["customerLocation"] = new Location($this->_propDict["customerLocation"]);
return $this->_propDict["customerLocation"];
}
}
return null;
} | Gets the customerLocation
Represents location information for the bookingCustomer who is booking the appointment.
@return Location|null The customerLocation | getCustomerLocation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setCustomerLocation($val)
{
$this->_propDict["customerLocation"] = $val;
return $this;
} | Sets the customerLocation
Represents location information for the bookingCustomer who is booking the appointment.
@param Location $val The customerLocation
@return BookingAppointment | setCustomerLocation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getCustomerName()
{
if (array_key_exists("customerName", $this->_propDict)) {
return $this->_propDict["customerName"];
} else {
return null;
}
} | Gets the customerName
The customer's name.
@return string|null The customerName | getCustomerName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setCustomerName($val)
{
$this->_propDict["customerName"] = $val;
return $this;
} | Sets the customerName
The customer's name.
@param string $val The customerName
@return BookingAppointment | setCustomerName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getCustomerNotes()
{
if (array_key_exists("customerNotes", $this->_propDict)) {
return $this->_propDict["customerNotes"];
} else {
return null;
}
} | Gets the customerNotes
The value of this property is only available when reading an individual booking appointment by id. Its value can only be set when creating a new appointment with a new customer, ie, without specifying a CustomerId. After that, the property is computed from the customer represented by CustomerId.
@return string|null The customerNotes | getCustomerNotes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setCustomerNotes($val)
{
$this->_propDict["customerNotes"] = $val;
return $this;
} | Sets the customerNotes
The value of this property is only available when reading an individual booking appointment by id. Its value can only be set when creating a new appointment with a new customer, ie, without specifying a CustomerId. After that, the property is computed from the customer represented by CustomerId.
@param string $val The customerNotes
@return BookingAppointment | setCustomerNotes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getCustomerPhone()
{
if (array_key_exists("customerPhone", $this->_propDict)) {
return $this->_propDict["customerPhone"];
} else {
return null;
}
} | Gets the customerPhone
The customer's phone number.
@return string|null The customerPhone | getCustomerPhone | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setCustomerPhone($val)
{
$this->_propDict["customerPhone"] = $val;
return $this;
} | Sets the customerPhone
The customer's phone number.
@param string $val The customerPhone
@return BookingAppointment | setCustomerPhone | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getCustomers()
{
if (array_key_exists("customers", $this->_propDict)) {
return $this->_propDict["customers"];
} else {
return null;
}
} | Gets the customers
A collection of the customer properties for an appointment. An appointment will contain a list of customer information and each unit will indicate the properties of a customer who is part of that appointment. Optional.
@return array|null The customers | getCustomers | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setCustomers($val)
{
$this->_propDict["customers"] = $val;
return $this;
} | Sets the customers
A collection of the customer properties for an appointment. An appointment will contain a list of customer information and each unit will indicate the properties of a customer who is part of that appointment. Optional.
@param BookingCustomerInformationBase[] $val The customers
@return BookingAppointment | setCustomers | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getCustomerTimeZone()
{
if (array_key_exists("customerTimeZone", $this->_propDict)) {
return $this->_propDict["customerTimeZone"];
} else {
return null;
}
} | Gets the customerTimeZone
The time zone of the customer. For a list of possible values, see dateTimeTimeZone.
@return string|null The customerTimeZone | getCustomerTimeZone | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setCustomerTimeZone($val)
{
$this->_propDict["customerTimeZone"] = $val;
return $this;
} | Sets the customerTimeZone
The time zone of the customer. For a list of possible values, see dateTimeTimeZone.
@param string $val The customerTimeZone
@return BookingAppointment | setCustomerTimeZone | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getDuration()
{
if (array_key_exists("duration", $this->_propDict)) {
if (is_a($this->_propDict["duration"], "\DateInterval") || is_null($this->_propDict["duration"])) {
return $this->_propDict["duration"];
} else {
$this->_propDict["duration"] = new \DateInterval($this->_propDict["duration"]);
return $this->_propDict["duration"];
}
}
return null;
} | Gets the duration
The length of the appointment, denoted in ISO8601 format.
@return \DateInterval|null The duration | getDuration | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setDuration($val)
{
$this->_propDict["duration"] = $val;
return $this;
} | Sets the duration
The length of the appointment, denoted in ISO8601 format.
@param \DateInterval $val The duration
@return BookingAppointment | setDuration | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getEnd()
{
if (array_key_exists("end", $this->_propDict)) {
if (is_a($this->_propDict["end"], "\Beta\Microsoft\Graph\Model\DateTimeTimeZone") || is_null($this->_propDict["end"])) {
return $this->_propDict["end"];
} else {
$this->_propDict["end"] = new DateTimeTimeZone($this->_propDict["end"]);
return $this->_propDict["end"];
}
}
return null;
} | Gets the end
The date, time, and time zone that the appointment ends.
@return DateTimeTimeZone|null The end | getEnd | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setEnd($val)
{
$this->_propDict["end"] = $val;
return $this;
} | Sets the end
The date, time, and time zone that the appointment ends.
@param DateTimeTimeZone $val The end
@return BookingAppointment | setEnd | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getFilledAttendeesCount()
{
if (array_key_exists("filledAttendeesCount", $this->_propDict)) {
return $this->_propDict["filledAttendeesCount"];
} else {
return null;
}
} | Gets the filledAttendeesCount
The current number of customers in the appointment.
@return int|null The filledAttendeesCount | getFilledAttendeesCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setFilledAttendeesCount($val)
{
$this->_propDict["filledAttendeesCount"] = intval($val);
return $this;
} | Sets the filledAttendeesCount
The current number of customers in the appointment.
@param int $val The filledAttendeesCount
@return BookingAppointment | setFilledAttendeesCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getInvoiceAmount()
{
if (array_key_exists("invoiceAmount", $this->_propDict)) {
return $this->_propDict["invoiceAmount"];
} else {
return null;
}
} | Gets the invoiceAmount
The billed amount on the invoice.
@return float|null The invoiceAmount | getInvoiceAmount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setInvoiceAmount($val)
{
$this->_propDict["invoiceAmount"] = floatval($val);
return $this;
} | Sets the invoiceAmount
The billed amount on the invoice.
@param float $val The invoiceAmount
@return BookingAppointment | setInvoiceAmount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getInvoiceDate()
{
if (array_key_exists("invoiceDate", $this->_propDict)) {
if (is_a($this->_propDict["invoiceDate"], "\Beta\Microsoft\Graph\Model\DateTimeTimeZone") || is_null($this->_propDict["invoiceDate"])) {
return $this->_propDict["invoiceDate"];
} else {
$this->_propDict["invoiceDate"] = new DateTimeTimeZone($this->_propDict["invoiceDate"]);
return $this->_propDict["invoiceDate"];
}
}
return null;
} | Gets the invoiceDate
The date, time, and time zone of the invoice for this appointment.
@return DateTimeTimeZone|null The invoiceDate | getInvoiceDate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setInvoiceDate($val)
{
$this->_propDict["invoiceDate"] = $val;
return $this;
} | Sets the invoiceDate
The date, time, and time zone of the invoice for this appointment.
@param DateTimeTimeZone $val The invoiceDate
@return BookingAppointment | setInvoiceDate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getInvoiceId()
{
if (array_key_exists("invoiceId", $this->_propDict)) {
return $this->_propDict["invoiceId"];
} else {
return null;
}
} | Gets the invoiceId
The ID of the invoice.
@return string|null The invoiceId | getInvoiceId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setInvoiceId($val)
{
$this->_propDict["invoiceId"] = $val;
return $this;
} | Sets the invoiceId
The ID of the invoice.
@param string $val The invoiceId
@return BookingAppointment | setInvoiceId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getInvoiceStatus()
{
if (array_key_exists("invoiceStatus", $this->_propDict)) {
if (is_a($this->_propDict["invoiceStatus"], "\Beta\Microsoft\Graph\Model\BookingInvoiceStatus") || is_null($this->_propDict["invoiceStatus"])) {
return $this->_propDict["invoiceStatus"];
} else {
$this->_propDict["invoiceStatus"] = new BookingInvoiceStatus($this->_propDict["invoiceStatus"]);
return $this->_propDict["invoiceStatus"];
}
}
return null;
} | Gets the invoiceStatus
The status of the invoice. Possible values are: draft, reviewing, open, canceled, paid, corrective.
@return BookingInvoiceStatus|null The invoiceStatus | getInvoiceStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setInvoiceStatus($val)
{
$this->_propDict["invoiceStatus"] = $val;
return $this;
} | Sets the invoiceStatus
The status of the invoice. Possible values are: draft, reviewing, open, canceled, paid, corrective.
@param BookingInvoiceStatus $val The invoiceStatus
@return BookingAppointment | setInvoiceStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getInvoiceUrl()
{
if (array_key_exists("invoiceUrl", $this->_propDict)) {
return $this->_propDict["invoiceUrl"];
} else {
return null;
}
} | Gets the invoiceUrl
The URL of the invoice in Microsoft Bookings.
@return string|null The invoiceUrl | getInvoiceUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setInvoiceUrl($val)
{
$this->_propDict["invoiceUrl"] = $val;
return $this;
} | Sets the invoiceUrl
The URL of the invoice in Microsoft Bookings.
@param string $val The invoiceUrl
@return BookingAppointment | setInvoiceUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getIsLocationOnline()
{
if (array_key_exists("isLocationOnline", $this->_propDict)) {
return $this->_propDict["isLocationOnline"];
} else {
return null;
}
} | Gets the isLocationOnline
True indicates that the appointment will be held online. Default value is false.
@return bool|null The isLocationOnline | getIsLocationOnline | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setIsLocationOnline($val)
{
$this->_propDict["isLocationOnline"] = boolval($val);
return $this;
} | Sets the isLocationOnline
True indicates that the appointment will be held online. Default value is false.
@param bool $val The isLocationOnline
@return BookingAppointment | setIsLocationOnline | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getJoinWebUrl()
{
if (array_key_exists("joinWebUrl", $this->_propDict)) {
return $this->_propDict["joinWebUrl"];
} else {
return null;
}
} | Gets the joinWebUrl
The URL of the online meeting for the appointment.
@return string|null The joinWebUrl | getJoinWebUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setJoinWebUrl($val)
{
$this->_propDict["joinWebUrl"] = $val;
return $this;
} | Sets the joinWebUrl
The URL of the online meeting for the appointment.
@param string $val The joinWebUrl
@return BookingAppointment | setJoinWebUrl | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getMaximumAttendeesCount()
{
if (array_key_exists("maximumAttendeesCount", $this->_propDict)) {
return $this->_propDict["maximumAttendeesCount"];
} else {
return null;
}
} | Gets the maximumAttendeesCount
The maximum number of customers allowed in an appointment. If maximumAttendeesCount of the service is greater than 1, pass valid customer IDs while creating or updating an appointment. To create a customer, use the Create bookingCustomer operation.
@return int|null The maximumAttendeesCount | getMaximumAttendeesCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setMaximumAttendeesCount($val)
{
$this->_propDict["maximumAttendeesCount"] = intval($val);
return $this;
} | Sets the maximumAttendeesCount
The maximum number of customers allowed in an appointment. If maximumAttendeesCount of the service is greater than 1, pass valid customer IDs while creating or updating an appointment. To create a customer, use the Create bookingCustomer operation.
@param int $val The maximumAttendeesCount
@return BookingAppointment | setMaximumAttendeesCount | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getOptOutOfCustomerEmail()
{
if (array_key_exists("optOutOfCustomerEmail", $this->_propDict)) {
return $this->_propDict["optOutOfCustomerEmail"];
} else {
return null;
}
} | Gets the optOutOfCustomerEmail
True indicates that the bookingCustomer for this appointment does not wish to receive a confirmation for this appointment.
@return bool|null The optOutOfCustomerEmail | getOptOutOfCustomerEmail | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setOptOutOfCustomerEmail($val)
{
$this->_propDict["optOutOfCustomerEmail"] = boolval($val);
return $this;
} | Sets the optOutOfCustomerEmail
True indicates that the bookingCustomer for this appointment does not wish to receive a confirmation for this appointment.
@param bool $val The optOutOfCustomerEmail
@return BookingAppointment | setOptOutOfCustomerEmail | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getPostBuffer()
{
if (array_key_exists("postBuffer", $this->_propDict)) {
if (is_a($this->_propDict["postBuffer"], "\DateInterval") || is_null($this->_propDict["postBuffer"])) {
return $this->_propDict["postBuffer"];
} else {
$this->_propDict["postBuffer"] = new \DateInterval($this->_propDict["postBuffer"]);
return $this->_propDict["postBuffer"];
}
}
return null;
} | Gets the postBuffer
The amount of time to reserve after the appointment ends, for cleaning up, as an example. The value is expressed in ISO8601 format.
@return \DateInterval|null The postBuffer | getPostBuffer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setPostBuffer($val)
{
$this->_propDict["postBuffer"] = $val;
return $this;
} | Sets the postBuffer
The amount of time to reserve after the appointment ends, for cleaning up, as an example. The value is expressed in ISO8601 format.
@param \DateInterval $val The postBuffer
@return BookingAppointment | setPostBuffer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getPreBuffer()
{
if (array_key_exists("preBuffer", $this->_propDict)) {
if (is_a($this->_propDict["preBuffer"], "\DateInterval") || is_null($this->_propDict["preBuffer"])) {
return $this->_propDict["preBuffer"];
} else {
$this->_propDict["preBuffer"] = new \DateInterval($this->_propDict["preBuffer"]);
return $this->_propDict["preBuffer"];
}
}
return null;
} | Gets the preBuffer
The amount of time to reserve before the appointment begins, for preparation, as an example. The value is expressed in ISO8601 format.
@return \DateInterval|null The preBuffer | getPreBuffer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setPreBuffer($val)
{
$this->_propDict["preBuffer"] = $val;
return $this;
} | Sets the preBuffer
The amount of time to reserve before the appointment begins, for preparation, as an example. The value is expressed in ISO8601 format.
@param \DateInterval $val The preBuffer
@return BookingAppointment | setPreBuffer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getPrice()
{
if (array_key_exists("price", $this->_propDict)) {
return $this->_propDict["price"];
} else {
return null;
}
} | Gets the price
The regular price for an appointment for the specified bookingService.
@return float|null The price | getPrice | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setPrice($val)
{
$this->_propDict["price"] = floatval($val);
return $this;
} | Sets the price
The regular price for an appointment for the specified bookingService.
@param float $val The price
@return BookingAppointment | setPrice | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getPriceType()
{
if (array_key_exists("priceType", $this->_propDict)) {
if (is_a($this->_propDict["priceType"], "\Beta\Microsoft\Graph\Model\BookingPriceType") || is_null($this->_propDict["priceType"])) {
return $this->_propDict["priceType"];
} else {
$this->_propDict["priceType"] = new BookingPriceType($this->_propDict["priceType"]);
return $this->_propDict["priceType"];
}
}
return null;
} | Gets the priceType
A setting to provide flexibility for the pricing structure of services. Possible values are: undefined, fixedPrice, startingAt, hourly, free, priceVaries, callUs, notSet, unknownFutureValue.
@return BookingPriceType|null The priceType | getPriceType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setPriceType($val)
{
$this->_propDict["priceType"] = $val;
return $this;
} | Sets the priceType
A setting to provide flexibility for the pricing structure of services. Possible values are: undefined, fixedPrice, startingAt, hourly, free, priceVaries, callUs, notSet, unknownFutureValue.
@param BookingPriceType $val The priceType
@return BookingAppointment | setPriceType | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getReminders()
{
if (array_key_exists("reminders", $this->_propDict)) {
return $this->_propDict["reminders"];
} else {
return null;
}
} | Gets the reminders
The value of this property is only available when reading an individual booking appointment by id.
@return array|null The reminders | getReminders | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setReminders($val)
{
$this->_propDict["reminders"] = $val;
return $this;
} | Sets the reminders
The value of this property is only available when reading an individual booking appointment by id.
@param BookingReminder[] $val The reminders
@return BookingAppointment | setReminders | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getSelfServiceAppointmentId()
{
if (array_key_exists("selfServiceAppointmentId", $this->_propDict)) {
return $this->_propDict["selfServiceAppointmentId"];
} else {
return null;
}
} | Gets the selfServiceAppointmentId
An additional tracking ID for the appointment, if the appointment has been created directly by the customer on the scheduling page, as opposed to by a staff member on the behalf of the customer.
@return string|null The selfServiceAppointmentId | getSelfServiceAppointmentId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setSelfServiceAppointmentId($val)
{
$this->_propDict["selfServiceAppointmentId"] = $val;
return $this;
} | Sets the selfServiceAppointmentId
An additional tracking ID for the appointment, if the appointment has been created directly by the customer on the scheduling page, as opposed to by a staff member on the behalf of the customer.
@param string $val The selfServiceAppointmentId
@return BookingAppointment | setSelfServiceAppointmentId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getServiceId()
{
if (array_key_exists("serviceId", $this->_propDict)) {
return $this->_propDict["serviceId"];
} else {
return null;
}
} | Gets the serviceId
The ID of the bookingService associated with this appointment.
@return string|null The serviceId | getServiceId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setServiceId($val)
{
$this->_propDict["serviceId"] = $val;
return $this;
} | Sets the serviceId
The ID of the bookingService associated with this appointment.
@param string $val The serviceId
@return BookingAppointment | setServiceId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getServiceLocation()
{
if (array_key_exists("serviceLocation", $this->_propDict)) {
if (is_a($this->_propDict["serviceLocation"], "\Beta\Microsoft\Graph\Model\Location") || is_null($this->_propDict["serviceLocation"])) {
return $this->_propDict["serviceLocation"];
} else {
$this->_propDict["serviceLocation"] = new Location($this->_propDict["serviceLocation"]);
return $this->_propDict["serviceLocation"];
}
}
return null;
} | Gets the serviceLocation
The location where the service is delivered.
@return Location|null The serviceLocation | getServiceLocation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setServiceLocation($val)
{
$this->_propDict["serviceLocation"] = $val;
return $this;
} | Sets the serviceLocation
The location where the service is delivered.
@param Location $val The serviceLocation
@return BookingAppointment | setServiceLocation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getServiceName()
{
if (array_key_exists("serviceName", $this->_propDict)) {
return $this->_propDict["serviceName"];
} else {
return null;
}
} | Gets the serviceName
This property is optional when creating a new appointment. If not specified, it is computed from the service associated with the appointment by the service id.
@return string|null The serviceName | getServiceName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setServiceName($val)
{
$this->_propDict["serviceName"] = $val;
return $this;
} | Sets the serviceName
This property is optional when creating a new appointment. If not specified, it is computed from the service associated with the appointment by the service id.
@param string $val The serviceName
@return BookingAppointment | setServiceName | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getServiceNotes()
{
if (array_key_exists("serviceNotes", $this->_propDict)) {
return $this->_propDict["serviceNotes"];
} else {
return null;
}
} | Gets the serviceNotes
The value of this property is only available when reading an individual booking appointment by id.
@return string|null The serviceNotes | getServiceNotes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setServiceNotes($val)
{
$this->_propDict["serviceNotes"] = $val;
return $this;
} | Sets the serviceNotes
The value of this property is only available when reading an individual booking appointment by id.
@param string $val The serviceNotes
@return BookingAppointment | setServiceNotes | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.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 will be sent to the customers for the appointment. Default value is false.
@return bool|null The smsNotificationsEnabled | getSmsNotificationsEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setSmsNotificationsEnabled($val)
{
$this->_propDict["smsNotificationsEnabled"] = boolval($val);
return $this;
} | Sets the smsNotificationsEnabled
True indicates SMS notifications will be sent to the customers for the appointment. Default value is false.
@param bool $val The smsNotificationsEnabled
@return BookingAppointment | setSmsNotificationsEnabled | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getStaffMemberIds()
{
if (array_key_exists("staffMemberIds", $this->_propDict)) {
return $this->_propDict["staffMemberIds"];
} else {
return null;
}
} | Gets the staffMemberIds
The ID of each bookingStaffMember who is scheduled in this appointment.
@return array|null The staffMemberIds | getStaffMemberIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setStaffMemberIds($val)
{
$this->_propDict["staffMemberIds"] = $val;
return $this;
} | Sets the staffMemberIds
The ID of each bookingStaffMember who is scheduled in this appointment.
@param string[] $val The staffMemberIds
@return BookingAppointment | setStaffMemberIds | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function getStart()
{
if (array_key_exists("start", $this->_propDict)) {
if (is_a($this->_propDict["start"], "\Beta\Microsoft\Graph\Model\DateTimeTimeZone") || is_null($this->_propDict["start"])) {
return $this->_propDict["start"];
} else {
$this->_propDict["start"] = new DateTimeTimeZone($this->_propDict["start"]);
return $this->_propDict["start"];
}
}
return null;
} | Gets the start
The date, time, and time zone that the appointment begins.
@return DateTimeTimeZone|null The start | getStart | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public function setStart($val)
{
$this->_propDict["start"] = $val;
return $this;
} | Sets the start
The date, time, and time zone that the appointment begins.
@param DateTimeTimeZone $val The start
@return BookingAppointment | setStart | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BookingAppointment.php | MIT |
public static function redirect()
{
return function (callable $handler) {
return new RedirectMiddleware($handler);
};
} | Middleware that handles request redirects.
@return callable Returns a function that accepts the next handler. | redirect | php | xiebruce/PicUploader | vendor/guzzlehttp/guzzle/src/Middleware.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzlehttp/guzzle/src/Middleware.php | MIT |
public static function prepareBody()
{
return function (callable $handler) {
return new PrepareBodyMiddleware($handler);
};
} | This middleware adds a default content-type if possible, a default
content-length or transfer-encoding header, and the expect header.
@return callable | prepareBody | php | xiebruce/PicUploader | vendor/guzzlehttp/guzzle/src/Middleware.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/guzzlehttp/guzzle/src/Middleware.php | MIT |
public function getApprovalId()
{
if (array_key_exists("approvalId", $this->_propDict)) {
return $this->_propDict["approvalId"];
} else {
return null;
}
} | Gets the approvalId
The identifier of the approval of the request.
@return string|null The approvalId | getApprovalId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Request.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Request.php | MIT |
public function setApprovalId($val)
{
$this->_propDict["approvalId"] = $val;
return $this;
} | Sets the approvalId
The identifier of the approval of the request.
@param string $val The approvalId
@return Request | setApprovalId | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Request.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Request.php | MIT |
public function getCompletedDateTime()
{
if (array_key_exists("completedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["completedDateTime"], "\DateTime") || is_null($this->_propDict["completedDateTime"])) {
return $this->_propDict["completedDateTime"];
} else {
$this->_propDict["completedDateTime"] = new \DateTime($this->_propDict["completedDateTime"]);
return $this->_propDict["completedDateTime"];
}
}
return null;
} | Gets the completedDateTime
The request completion date time.
@return \DateTime|null The completedDateTime | getCompletedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Request.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Request.php | MIT |
public function setCompletedDateTime($val)
{
$this->_propDict["completedDateTime"] = $val;
return $this;
} | Sets the completedDateTime
The request completion date time.
@param \DateTime $val The completedDateTime
@return Request | setCompletedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Request.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Request.php | MIT |
public function getCreatedBy()
{
if (array_key_exists("createdBy", $this->_propDict)) {
if (is_a($this->_propDict["createdBy"], "\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["createdBy"])) {
return $this->_propDict["createdBy"];
} else {
$this->_propDict["createdBy"] = new IdentitySet($this->_propDict["createdBy"]);
return $this->_propDict["createdBy"];
}
}
return null;
} | Gets the createdBy
The principal that created the request.
@return IdentitySet|null The createdBy | getCreatedBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Request.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Request.php | MIT |
public function setCreatedBy($val)
{
$this->_propDict["createdBy"] = $val;
return $this;
} | Sets the createdBy
The principal that created the request.
@param IdentitySet $val The createdBy
@return Request | setCreatedBy | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Request.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Request.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 request creation date time.
@return \DateTime|null The createdDateTime | getCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Request.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Request.php | MIT |
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
} | Sets the createdDateTime
The request creation date time.
@param \DateTime $val The createdDateTime
@return Request | setCreatedDateTime | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Request.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Request.php | MIT |
public function getCustomData()
{
if (array_key_exists("customData", $this->_propDict)) {
return $this->_propDict["customData"];
} else {
return null;
}
} | Gets the customData
Free text field to define any custom data for the request. Not used.
@return string|null The customData | getCustomData | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Request.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Request.php | MIT |
public function setCustomData($val)
{
$this->_propDict["customData"] = $val;
return $this;
} | Sets the customData
Free text field to define any custom data for the request. Not used.
@param string $val The customData
@return Request | setCustomData | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Request.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Request.php | MIT |
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
return $this->_propDict["status"];
} else {
return null;
}
} | Gets the status
The status of the request. Not nullable. The possible values are: Canceled, Denied, Failed, Granted, PendingAdminDecision, PendingApproval, PendingProvisioning, PendingScheduleCreation, Provisioned, Revoked, and ScheduleCreated. Not nullable.
@return string|null The status | getStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Request.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Request.php | MIT |
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
} | Sets the status
The status of the request. Not nullable. The possible values are: Canceled, Denied, Failed, Granted, PendingAdminDecision, PendingApproval, PendingProvisioning, PendingScheduleCreation, Provisioned, Revoked, and ScheduleCreated. Not nullable.
@param string $val The status
@return Request | setStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/Request.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Request.php | MIT |
public function getDeviceLocation()
{
if (array_key_exists("deviceLocation", $this->_propDict)) {
if (is_a($this->_propDict["deviceLocation"], "\Microsoft\Graph\Model\DeviceGeoLocation") || is_null($this->_propDict["deviceLocation"])) {
return $this->_propDict["deviceLocation"];
} else {
$this->_propDict["deviceLocation"] = new DeviceGeoLocation($this->_propDict["deviceLocation"]);
return $this->_propDict["deviceLocation"];
}
}
return null;
} | Gets the deviceLocation
device location
@return DeviceGeoLocation|null The deviceLocation | getDeviceLocation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/LocateDeviceActionResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/LocateDeviceActionResult.php | MIT |
public function setDeviceLocation($val)
{
$this->_propDict["deviceLocation"] = $val;
return $this;
} | Sets the deviceLocation
device location
@param DeviceGeoLocation $val The value to assign to the deviceLocation
@return LocateDeviceActionResult The LocateDeviceActionResult | setDeviceLocation | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Model/LocateDeviceActionResult.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/LocateDeviceActionResult.php | MIT |
public function getSimpleSettingValueTemplate()
{
if (array_key_exists("simpleSettingValueTemplate", $this->_propDict)) {
if (is_a($this->_propDict["simpleSettingValueTemplate"], "\Beta\Microsoft\Graph\Model\DeviceManagementConfigurationSimpleSettingValueTemplate") || is_null($this->_propDict["simpleSettingValueTemplate"])) {
return $this->_propDict["simpleSettingValueTemplate"];
} else {
$this->_propDict["simpleSettingValueTemplate"] = new DeviceManagementConfigurationSimpleSettingValueTemplate($this->_propDict["simpleSettingValueTemplate"]);
return $this->_propDict["simpleSettingValueTemplate"];
}
}
return null;
} | Gets the simpleSettingValueTemplate
Simple Setting Value Template
@return DeviceManagementConfigurationSimpleSettingValueTemplate|null The simpleSettingValueTemplate | getSimpleSettingValueTemplate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSimpleSettingInstanceTemplate.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSimpleSettingInstanceTemplate.php | MIT |
public function setSimpleSettingValueTemplate($val)
{
$this->_propDict["simpleSettingValueTemplate"] = $val;
return $this;
} | Sets the simpleSettingValueTemplate
Simple Setting Value Template
@param DeviceManagementConfigurationSimpleSettingValueTemplate $val The value to assign to the simpleSettingValueTemplate
@return DeviceManagementConfigurationSimpleSettingInstanceTemplate The DeviceManagementConfigurationSimpleSettingInstanceTemplate | setSimpleSettingValueTemplate | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSimpleSettingInstanceTemplate.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/DeviceManagementConfigurationSimpleSettingInstanceTemplate.php | MIT |
public function getSchedule()
{
if (array_key_exists("schedule", $this->_propDict)) {
if (is_a($this->_propDict["schedule"], "\Beta\Microsoft\Graph\Model\SynchronizationSchedule") || is_null($this->_propDict["schedule"])) {
return $this->_propDict["schedule"];
} else {
$this->_propDict["schedule"] = new SynchronizationSchedule($this->_propDict["schedule"]);
return $this->_propDict["schedule"];
}
}
return null;
} | Gets the schedule
Schedule used to run the job. Read-only.
@return SynchronizationSchedule|null The schedule | getSchedule | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | MIT |
public function setSchedule($val)
{
$this->_propDict["schedule"] = $val;
return $this;
} | Sets the schedule
Schedule used to run the job. Read-only.
@param SynchronizationSchedule $val The schedule
@return SynchronizationJob | setSchedule | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | MIT |
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Beta\Microsoft\Graph\Model\SynchronizationStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new SynchronizationStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
} | Gets the status
Status of the job, which includes when the job was last run, current job state, and errors.
@return SynchronizationStatus|null The status | getStatus | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SynchronizationJob.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.