Sha256: b3dc30fe73ec6a5b82961bbac5f6973e870df40fbad9c23c71b3c4304b7ae99b

Contents?: true

Size: 989 Bytes

Versions: 6

Compression:

Stored size: 989 Bytes

Contents

# frozen_string_literal: true
# typed: true

module WorkOS
  # The Webhook class provides a lightweight wrapper around
  # a WorkOS Webhook resource. This class is not meant to be instantiated
  # in user space, and is instantiated internally but exposed.
  class Webhook
    extend T::Sig

    attr_accessor :id, :event, :data

    sig { params(json: String).void }
    def initialize(json)
      raw = parse_json(json)

      @id = T.let(raw.id, String)
      @event = T.let(raw.event, String)
      @data = raw.data
    end

    def to_json(*)
      {
        id: id,
        event: event,
        data: data,
      }
    end

    private

    sig do
      params(
        json_string: String,
      ).returns(WorkOS::Types::WebhookStruct)
    end
    def parse_json(json_string)
      hash = JSON.parse(json_string, symbolize_names: true)

      WorkOS::Types::WebhookStruct.new(
        id: hash[:id],
        event: hash[:event],
        data: hash[:data],
      )
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
workos-2.2.0 lib/workos/webhook.rb
workos-2.1.1 lib/workos/webhook.rb
workos-2.1.0 lib/workos/webhook.rb
workos-2.0.0 lib/workos/webhook.rb
workos-1.6.1 lib/workos/webhook.rb
workos-1.6.0 lib/workos/webhook.rb