• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.airbnb.lottie.samples.model
2 
3 import android.os.Parcelable
4 import kotlinx.android.parcel.Parcelize
5 
6 // This is a lint bug
7 @SuppressWarnings("ParcelCreator")
8 @Parcelize
9 data class AnimationResponse(
10         val currentPage: Int,
11         val data: List<AnimationData>,
12         val from: String,
13         val lastPage: Int,
14         val nextPageUrl: String?,
15         val path: String,
16         val perPage: Int,
17         val prevPageUrl: String,
18         val to: Int,
19         val total: Int
20 ) : Parcelable