open_graph/
object_type.rs

1/// The type of object in the graph this refers to.
2#[derive(Debug, Clone)]
3pub enum ObjectType {
4  /// A song.
5  MusicSong,
6  /// A music album.
7  MusicAlbum,
8  /// A music playlist.
9  MusicPlaylist,
10  /// A radio station
11  MusicRadioStation,
12  /// A movie
13  VideoMovie,
14  /// An episode of a show.
15  VideoEpisode,
16  /// A TV show.
17  VideoTvShow,
18  /// Miscellaneous video.
19  VideoOther,
20  /// An article.
21  Article,
22  /// A book.
23  Book,
24  /// A profile.
25  Profile,
26  /// A website.
27  Website,
28}