com.chrisdempewolf.pinterest.responses.user.Data.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinterest-sdk Show documentation
Show all versions of pinterest-sdk Show documentation
An SDK for Pinterest's version 1.0 API.
package com.chrisdempewolf.pinterest.responses.user
import com.google.gson.annotations.SerializedName
data class Data(
val username: String?,
val bio: String?,
@SerializedName("first_name") val firstName: String?,
@SerializedName("last_name") val lastName: String?,
val url: String?,
@SerializedName("created_at") val createdAt: String?,
val id: String?,
val counts: Counts?,
val image: Image?)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy