OBJECT

SentFax

A Sent Fax

link GraphQL Schema definition

  • type SentFax {
  • # The creation date of the fax
  • created_at: String
  • # Where the fax was sent
  • destination_number: String
  • # The unique identifier of the fax
  • id: ID!
  • # The patient that the fax is in regards to
  • patient: User
  • # False if no document ids or form answer group ids (fax existed before the
  • # addition of document ids column)
  • resendable: Boolean
  • # The sender of the fax
  • sender: User
  • # The status of the fax
  • status: String
  • # The display string of the fax status
  • status_display_string: String
  • }