@jaricardodev/ews-javascript-api
Version:
EWS Managed api in JavaScript
20 lines (17 loc) • 402 B
text/typescript
/**
* Defines the response types from a GetUserPhoto request
*/
export enum GetUserPhotoStatus {
/**
* The photo was successfully returned
*/
PhotoReturned = 0,
/**
* The photo has not changed since it was last obtained
*/
PhotoUnchanged = 1,
/**
* The photo or user was not found on the server
*/
PhotoOrUserNotFound = 2,
}