using System;
namespace FlickrNet
{
///
/// Which photo search extras to be included. Can be combined to include more than one
/// value.
///
///
/// The following code sets options to return both the license and owner name along with
/// the other search results.
///
/// PhotoSearchOptions options = new PhotoSearchOptions();
/// options.Extras = PhotoSearchExtras.License & PhotoSearchExtras.OwnerName
///
///
[Flags]
public enum PhotoSearchExtras
{
///
/// No extras selected.
///
None = 0,
///
/// Returns a license.
///
License = 1,
///
/// Returned the date the photos was uploaded.
///
DateUploaded = 2,
///
/// Returned the date the photo was taken.
///
DateTaken = 4,
///
/// Returns the name of the owner of the photo.
///
OwnerName = 8,
///
/// Returns the server for the buddy icon for this user.
///
IconServer = 16,
///
/// Returns the extension for the original format of this photo.
///
OriginalFormat = 32,
///
/// Returns the date the photo was last updated.
///
LastUpdated = 64,
///
/// Undocumented Tags extra
///
Tags = 128,
///
/// Geo-location information
///
Geo = 256,
///
/// Returns all the above information.
///
All = License | DateUploaded | DateTaken | OwnerName | IconServer | OriginalFormat | LastUpdated | Tags | Geo
}
}