summaryrefslogblamecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Request/FindPeopleType.php
blob: 6e8c1699585a04d6547c8f8e448d6710b56733c2 (plain) (tree)
















































































































                                                                            
<?php
/**
 * Contains \jamesiarmes\PhpEws\Request\FindPeopleType.
 */

namespace jamesiarmes\PhpEws\Request;

/**
 * Defines a set of data used in a FindPeople request.
 *
 * @package php-ews\Request
 */
class FindPeopleType extends BaseRequestType
{
    /**
     * Specifies a value that is applied to a set of Persona properties.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\RestrictionType
     */
    public $AggregationRestriction;

    /**
     * Specifies the context properties of the contact.
     *
     * @since Exchange 2016
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfContextProperty
     */
    public $Context;

    /**
     * Describes how paged conversation or item information is returned.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\IndexedPageViewType
     */
    public $IndexedPageItemView;

    /**
     * Identifies the folder in which to search.
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\TargetFolderIdType
     */
    public $ParentFolderId;

    /**
	 * Specifies the set of persona properties.
     *
	 * @since Exchange 2013
	 *
	 * @var \jamesiarmes\PhpEws\Type\PersonaResponseShapeType
	 */
	public $PersonaShape;

    /**
     * Specifies the source data for the query.
     *
     * @since Exchange 2016
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfPeopleQuerySource
     */
    public $QuerySources;

    /**
     * Contains a mailbox query string based on Advanced Query Syntax (AQS).
     *
     * @since Exchange 2013
     *
     * @var \jamesiarmes\PhpEws\Type\QueryStringType
     */
    public $QueryString;

    /**
	 * Represents the restriction or query that is used to filter items.
	 *
	 * @since Exchange 2013
	 *
	 * @var \jamesiarmes\PhpEws\Type\RestrictionType
	 */
	public $Restriction;

    /**
     * Internal use only.
     *
     * @since Exchange 2016
     *
     * @var boolean
     */
    public $SearchPeopleSuggestionIndex;

    /**
	 * Defines how items are sorted.
	 *
	 * @since Exchange 2013
	 *
	 * @var \jamesiarmes\PhpEws\ArrayType\NonEmptyArrayOfFieldOrdersType
	 */
	public $SortOrder;

    /**
     * Specifies the query string for topic searches.
     *
     * @since Exchange 2016
     *
     * @var string
     */
    public $TopicQueryString;
}