summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLMetadataType.h
blob: da79a4ac679ba536ec9dad5a66d7aee836072982 (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76

//
//  SDLMetadataType.h
//  SmartDeviceLink-iOS
//
//  Created by Brett McIsaac on 8/2/17.
//  Copyright © 2017 smartdevicelink. All rights reserved.
//

#import "SDLEnum.h"

/**
 * Text Field metadata types. Used in Show.
 */
typedef SDLEnum SDLMetadataType SDL_SWIFT_ENUM;

/**
 * The song / media title name
 */
extern SDLMetadataType const SDLMetadataTypeMediaTitle;

/**
 * The "artist" of the media
 */
extern SDLMetadataType const SDLMetadataTypeMediaArtist;

/**
 * The "album" of the media"
 */
extern SDLMetadataType const SDLMetadataTypeMediaAlbum;

/**
 * The "year" that the media was created
 */
extern SDLMetadataType const SDLMetadataTypeMediaYear;

/**
 * The "genre" of the media
 */
extern SDLMetadataType const SDLMetadataTypeMediaGenre;

/**
 * The "station" that the media is playing on
 */
extern SDLMetadataType const SDLMetadataTypeMediaStation;

/**
 * The "rating" given to the media
 */
extern SDLMetadataType const SDLMetadataTypeRating;

/**
 * The current temperature of the weather information
 */
extern SDLMetadataType const SDLMetadataTypeCurrentTemperature;

/**
 * The high / maximum temperature of the weather information for the current period
 */
extern SDLMetadataType const SDLMetadataTypeMaximumTemperature;

/**
 * The low / minimum temperature of the weather information for the current period
 */
extern SDLMetadataType const SDLMetadataTypeMinimumTemperature;

/**
 * A description of the weather for the current period
 */
extern SDLMetadataType const SDLMetadataTypeWeatherTerm;

/**
 * The humidity of the weather information for the current period
 */
extern SDLMetadataType const SDLMetadataTypeHumidity;