summaryrefslogblamecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/ContactsViewType.php
blob: a3d7fde2f907ac8c91d0a11f724dcd409873e8a3 (plain) (tree)


















































                                                                                
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\ContactsViewType.
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Defines a search for contact items based on alphabetical display names.
 *
 * @package php-ews\Type
 */
class ContactsViewType extends BasePagingType
{
    /**
     * Defines the last name in the contacts list to return in the response.
     *
     * If the FinalName attribute is omitted, the response will contain all
     * subsequent contacts in the specified sort order. If the specified final
     * name is not in the contacts list, the next alphabetical name as defined
     * by the cultural context will be excluded.
     *
     * For example, if FinalName="Name", but Name is not in the contacts list,
     * contacts that have display names of Name1 or NAME will not be included.
     *
     * This attribute is optional.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    public $FinalName;

    /**
     * Defines the first name in the contacts list to return in the response.
     *
     * If the specified initial name is not in the contacts list, the next
     * alphabetical name as defined by the cultural context will be returned,
     * except if the next name comes after FinalName.
     *
     * If the InitialName attribute is omitted, the response will contain a list
     * of contacts that starts with the first name in the contact list.
     *
     * This attribute is optional.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    public $InitialName;
}