AppointmentRequest

data class AppointmentRequest(val userId: String, val doctorId: String, val appointmentDate: Date, val status: String)

Constructors

Link copied to clipboard
constructor(userId: String, doctorId: String, appointmentDate: Date, status: String)

Properties

Link copied to clipboard
@SerializedName(value = "appointment_date")
val appointmentDate: Date
Link copied to clipboard
@SerializedName(value = "doctor_id")
val doctorId: String
Link copied to clipboard
@SerializedName(value = "status")
val status: String
Link copied to clipboard
@SerializedName(value = "user_id")
val userId: String