Advertisement
nurrohim11

Untitled

Sep 16th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.59 KB | None | 0 0
  1. package com.dicoding.kotlinacademy.model
  2.  
  3. import com.google.gson.annotations.SerializedName
  4. import java.util.*
  5.  
  6. data class Team(
  7.         @SerializedName("idTeam")
  8.         var teamId: String? = null,
  9.  
  10.         @SerializedName("strTeam")
  11.         var teamName: String? = null,
  12.  
  13.         @SerializedName("strTeamBadge")
  14.         var teamBadge: String? = null,
  15.  
  16.         @SerializedName("intFormedYear")
  17.         var teamFormedYear: String? = null,
  18.  
  19.         @SerializedName("strStadium")
  20.         var teamStadium: String? = null,
  21.  
  22.         @SerializedName("strDescriptionEN")
  23.         var teamDescription: String? = null
  24. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement