Sha256: fecb50bd17ba9fa8f0e1e7599a796462e1cc07ee09376ee890bda90e292d5164

Contents?: true

Size: 340 Bytes

Versions: 3

Compression:

Stored size: 340 Bytes

Contents

module TelephoneAppointments
  class DroppedSummaryDocumentActivity
    def initialize(appointment_id)
      @appointment_id = appointment_id
    end

    def save
      response = TelephoneAppointments.api.post(
        "/api/v1/appointments/#{@appointment_id}/dropped_summary_documents"
      )

      response.success?
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
telephone_appointments-0.3.0 lib/telephone_appointments/dropped_summary_document_activity.rb
telephone_appointments-0.2.1 lib/telephone_appointments/dropped_summary_document_activity.rb
telephone_appointments-0.2.0 lib/telephone_appointments/dropped_summary_document_activity.rb