Skip to content

Instantly share code, notes, and snippets.

@varshabhatia007
Created May 17, 2019 09:03
Show Gist options
  • Save varshabhatia007/06000d2ea258a684ad98c62beab4a24c to your computer and use it in GitHub Desktop.
Save varshabhatia007/06000d2ea258a684ad98c62beab4a24c to your computer and use it in GitHub Desktop.
data class CustomerDetailResponse(
@SerializedName("data") val data: CustomerDetail,
@SerializedName("success") val success: Boolean = false,
@SerializedName("errors") val errors: List<Error>?)
data class CustomerDetail(
@SerializedName("first_name") val firstName: String,
@SerializedName("last_name") val lastName: String,
@SerializedName("email") val email: String,
@SerializedName("phone_number") val phoneNumber: Int)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment