-
Notifications
You must be signed in to change notification settings - Fork 1
/
credit-endpoint-response.interface.ts
76 lines (58 loc) · 1.12 KB
/
credit-endpoint-response.interface.ts
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
export interface CreditEndpointResponse {
/**
* If count parameter is set in the options array, the value from IGDB will be stored here.
*/
count?: number
id: number;
name: string;
slug: string;
url: string;
/**
* Unix epoch
*/
created_at: number;
/**
* Unix epoch
*/
updated_at: number;
/**
* ID of a Game record (expandable)
*/
game?: number;
/**
* See the Credit category value reference
*/
category?: number;
/**
* ID of a Company record (expandable)
*/
company?: number;
/**
* Position in the credits list.
*/
position?: number;
/**
* ID of a Person record (expandable)
*/
person?: number;
/**
* ID of a Character record (expandable)
*/
character?: number;
/**
* ID of a Title record (expandable)
*/
person_title?: number;
/**
* Please see the ISO-3316-1 reference
*/
country?: number;
/**
* Credited name of the person only for overriding when misspelled or changed in credits.
*/
credited_name?: string;
/**
* Credited name of the character only for overriding when misspelled or changed in credits.
*/
character_credited_name?: string;
}