1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
<?php
/**
*
*
*
* Generated by <a href="http://enunciate.codehaus.org">Enunciate</a>.
*
*/
namespace Gedcomx\Extensions\FamilySearch\Platform\Artifacts;
/**
* Class ArtifactType
*
* @package Gedcomx\Extensions\FamilySearch\Platform\Artifacts
*
* Enumeration of known artifact types.
*/
class ArtifactType
{
/**
* The artifact is an audio.
*/
const AUDIO = "http://familysearch.org/v1/Audio";
/**
* The artifact is an image of a document.
*/
const DOCUMENT = "http://familysearch.org/v1/Document";
/**
* The artifact is an image.
*/
const IMAGE = "http://familysearch.org/v1/Image";
/**
* The artifact is a portrait.
*/
const PORTRAIT = "http://familysearch.org/v1/Portrait";
/**
* The artifact is a story.
*/
const STORY = "http://familysearch.org/v1/Story";
/**
* The artifact is a video.
*/
const VIDEO = "http://familysearch.org/v1/Video";
}