CreateActionType
extends Enumeration
in package
Defines the action for uploading an item into a mailbox.
Table of Contents
Constants
- CREATE = 'CreateNew'
- Indicates that a new copy of the original item is uploaded to the mailbox.
- UPDATE = 'Update'
- Specifies that the item indicated by the ItemId element will be updated.
- UPDATE_OR_CREATE = 'UpdateOrCreate'
- Indicates that an attempt is first made to update the item.
Properties
- $_ : string
- Element value.
Methods
- __clone() : mixed
- Clones any object properties on a type object when it is cloned. Allows for a deep clone required when using object to represent data types when making a SOAP call.
- __toString() : string
- Returns the value of this enumeration as a string.
Constants
CREATE
Indicates that a new copy of the original item is uploaded to the mailbox.
public
string
CREATE
= 'CreateNew'
The ItemId element must not be present if the CreateNew value is used. The new item identifier is returned in the response.
Tags
UPDATE
Specifies that the item indicated by the ItemId element will be updated.
public
string
UPDATE
= 'Update'
An error is returned if the ItemId element is not present or if the item does not exist in the folder identified by the ParentFolderId element.
Tags
UPDATE_OR_CREATE
Indicates that an attempt is first made to update the item.
public
string
UPDATE_OR_CREATE
= 'UpdateOrCreate'
If the item does not exist in the folder specified by the ParentFolderId element, a new item is created.
Tags
Properties
$_
Element value.
public
string
$_
Tags
Methods
__clone()
Clones any object properties on a type object when it is cloned. Allows for a deep clone required when using object to represent data types when making a SOAP call.
public
__clone() : mixed
__toString()
Returns the value of this enumeration as a string.
public
__toString() : string
.