@@ -6,48 +6,26 @@ import st.slex.csplashscreen.data.model.remote.statistic.RemotePhotoStatistics
6
6
import st.slex.csplashscreen.data.model.remote.user.RemoteUserModel
7
7
8
8
class RemoteImageModel (
9
- @SerializedName(" id" )
10
- val id : String ,
11
- @SerializedName(" created_at" )
12
- val created_at : String? ,
13
- @SerializedName(" updated_at" )
14
- val updated_at : String? ,
15
- @SerializedName(" width" )
16
- val width : Int? ,
17
- @SerializedName(" height" )
18
- val height : Int? ,
19
- @SerializedName(" color" )
20
- val color : String? = " #E0E0E0" ,
21
- @SerializedName(" blur_hash" )
22
- val blur_hash : String? ,
23
- @SerializedName(" views" )
24
- val views : Int? ,
25
- @SerializedName(" downloads" )
26
- val downloads : Int? ,
27
- @SerializedName(" likes" )
28
- val likes : Int? ,
29
- @SerializedName(" liked_by_user" )
30
- var liked_by_user : Boolean? ,
31
- @SerializedName(" description" )
32
- val description : String? ,
33
- @SerializedName(" alt_description" )
34
- val alt_description : String? ,
35
- @SerializedName(" exif" )
36
- val exif : RemoteExifModel ? ,
37
- @SerializedName(" location" )
38
- val location : RemoteLocationModel ? ,
39
- @SerializedName(" tags" )
40
- val tags : List <RemoteTagModel >? ,
41
- @SerializedName(" current_user_collections" )
42
- val current_user_collections : List <RemoteCollectionModel >? ,
43
- @SerializedName(" sponsorship" )
44
- val sponsorship : RemoteSponsorship ? ,
45
- @SerializedName(" urls" )
46
- val urls : RemoteUrlsModel ,
47
- @SerializedName(" links" )
48
- val links : RemoteLinksImageModel ? ,
49
- @SerializedName(" user" )
50
- val user : RemoteUserModel ? ,
51
- @SerializedName(" statistics" )
52
- val statistics : RemotePhotoStatistics ?
9
+ @SerializedName(" id" ) val id : String ,
10
+ @SerializedName(" created_at" ) val created_at : String? ,
11
+ @SerializedName(" updated_at" ) val updated_at : String? ,
12
+ @SerializedName(" width" ) val width : Int? ,
13
+ @SerializedName(" height" ) val height : Int? ,
14
+ @SerializedName(" color" ) val color : String? = " #E0E0E0" ,
15
+ @SerializedName(" blur_hash" ) val blur_hash : String? ,
16
+ @SerializedName(" views" ) val views : Int? ,
17
+ @SerializedName(" downloads" ) val downloads : Int? ,
18
+ @SerializedName(" likes" ) val likes : Int? ,
19
+ @SerializedName(" liked_by_user" ) var liked_by_user : Boolean? ,
20
+ @SerializedName(" description" ) val description : String? ,
21
+ @SerializedName(" alt_description" ) val alt_description : String? ,
22
+ @SerializedName(" exif" ) val exif : RemoteExifModel ? ,
23
+ @SerializedName(" location" ) val location : RemoteLocationModel ? ,
24
+ @SerializedName(" tags" ) val tags : List <RemoteTagModel >? ,
25
+ @SerializedName(" current_user_collections" ) val current_user_collections : List <RemoteCollectionModel >? ,
26
+ @SerializedName(" sponsorship" ) val sponsorship : RemoteSponsorship ? ,
27
+ @SerializedName(" urls" ) val urls : RemoteUrlsModel ,
28
+ @SerializedName(" links" ) val links : RemoteLinksImageModel ? ,
29
+ @SerializedName(" user" ) val user : RemoteUserModel ? ,
30
+ @SerializedName(" statistics" ) val statistics : RemotePhotoStatistics ?
53
31
)
0 commit comments