class AthenaHealth::Appointment

Public Instance Methods

appointment_status() click to toggle source
# File lib/athena_health/appointment.rb, line 30
def appointment_status
    {
      'f' => 'Future',
      'x' => 'Cancelled',
      'o' => 'Open',
      '2' => 'Checked in',
      '3' => 'Checked out',
      '4' => 'Charge entered'
    }[appointmentstatus]
end
full_time() click to toggle source
# File lib/athena_health/appointment.rb, line 41
def full_time
  "#{date} #{starttime}"
end