Sha256: 8c52f199c905b8c53255d85d3f31557cdd80bfb7bd9b512c3cc56baa6155d533
Contents?: true
Size: 630 Bytes
Versions: 42
Compression:
Stored size: 630 Bytes
Contents
# frozen_string_literal: true module ErpIntegration # The `ErpIntegration::Webhook` exposes an uniformed API for interaction with # third-party ERP vendors. class Webhook < Resource attr_accessor :id, :active, :attachments, :create_date, :create_uid, :event, :messages, :metadata, :metafields, :private_notes, :public_notes, :rec_blurb, :rec_name, :recent_deliveries, :secret, :url, :write_date, :write_uid class << self def archive(id) adapter.archive(id) end def restore(id) adapter.restore(id) end end end end
Version data entries
42 entries across 42 versions & 1 rubygems