Photo

data class Photo(var id: String? = null, var createdAt: Long = 0, var prefix: String? = null, var suffix: String? = null, var url: String? = null, var width: Int = 0, var height: Int = 0, var name: String? = null, var sizes: IntArray? = null) : FoursquareType, Parcelable

Data class representing a photo information, such as url, width and height. This is used in venues and categories.

Constructors

Link copied to clipboard
fun Photo(id: String? = null, createdAt: Long = 0, prefix: String? = null, suffix: String? = null, url: String? = null, width: Int = 0, height: Int = 0, name: String? = null, sizes: IntArray? = null)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int

Properties

Link copied to clipboard
var createdAt: Long = 0
Link copied to clipboard
var height: Int = 0
Link copied to clipboard
var id: String? = null
Link copied to clipboard
var name: String? = null
Link copied to clipboard
var prefix: String? = null
Link copied to clipboard
var sizes: IntArray? = null
Link copied to clipboard
var suffix: String? = null
Link copied to clipboard
var url: String? = null
Link copied to clipboard
var width: Int = 0