blob: b05d50edce26770dd38270df1e120f1131813303 [file] [log] [blame]
package com.airbnb.lottie.samples.model
import android.os.Parcelable
import kotlinx.android.parcel.Parcelize
// This is a lint bug
@SuppressWarnings("ParcelCreator")
@Parcelize
data class AnimationResponse(
val currentPage: Int,
val data: List<AnimationData>,
val from: String,
val lastPage: Int,
val nextPageUrl: String?,
val path: String,
val perPage: Int,
val prevPageUrl: String,
val to: Int,
val total: Int
) : Parcelable