-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #231 from jamesiarmes/issue-86-missing-types
- Loading branch information
Showing
613 changed files
with
39,626 additions
and
4,265 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,34 @@ | ||
<?php | ||
/** | ||
* The AbsoluteDateTransition element represents a time zone transition that | ||
* occurs on a specific date and at a specific time. | ||
* | ||
* @package php-ews | ||
* @subpackage Types | ||
* Contains EWSType_AbsoluteDateTransitionType. | ||
*/ | ||
|
||
/** | ||
* Definition of the AbsoluteDateTransitionType type. | ||
* Represents a time zone transition that occurs on a specific date and at a | ||
* specific time. | ||
* | ||
* @package php-ews\Types | ||
*/ | ||
class EWSType_AbsoluteDateTransitionType extends EWSType | ||
{ | ||
/** | ||
* Specifies the Period or TransitionsGroup that is the target of the time | ||
* zone transition. | ||
* Represents the date and time at which the time zone transition occurs. | ||
* | ||
* @var EWSType_TransitionTargetType | ||
* @since Exchange 2010 | ||
* | ||
* @var string | ||
* | ||
* @todo Make a DateTime object. | ||
*/ | ||
public $To; | ||
public $DateTime; | ||
|
||
/** | ||
* Represents the date and time at which the time zone transition occurs. | ||
* Specifies the Period or TransitionsGroup that is the target of the time | ||
* zone transition. | ||
* | ||
* @var string | ||
* @since Exchange 2010 | ||
* | ||
* @var EWSType_TransitionTargetType | ||
*/ | ||
public $DateTime; | ||
public $To; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,39 @@ | ||
<?php | ||
/** | ||
* Definition of the AbsoluteMonthlyRecurrencePatternType type | ||
* | ||
* @package php-ews | ||
* @subpackage Types | ||
* Contains EWSType_AbsoluteMonthlyRecurrencePatternType. | ||
*/ | ||
|
||
/** | ||
* Definition of the AbsoluteMonthlyRecurrencePatternType type | ||
* Represents a monthly recurrence pattern. | ||
* | ||
* @package php-ews\Types | ||
* | ||
* @todo Extend EWSType_IntervalRecurrencePatternBaseType. | ||
*/ | ||
class EWSType_AbsoluteMonthlyRecurrencePatternType extends EWSType | ||
{ | ||
/** | ||
* DayOfMonth property | ||
* Describes the day in a month that a recurring item occurs. | ||
* | ||
* The range of values for this property is 1 to 31. If for a particular | ||
* month this value is larger than the number of days in the month, the last | ||
* day of the month is assumed for this property. | ||
* | ||
* @since Exchange 2007 | ||
* | ||
* @var integer | ||
*/ | ||
public $DayOfMonth; | ||
|
||
/** | ||
* Defines the interval between two consecutive recurring items. | ||
* | ||
* For example, if the Interval has a value of 5, the recurring item occurs | ||
* every five months. The range of valid values is from 1 to 99. | ||
* | ||
* @since Exchange 2007 | ||
* | ||
* @var integer | ||
*/ | ||
public $Interval; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.