Class: Svix::OperationalWebhookEndpointSecretOut

Inherits:
Object
  • Object
show all
Defined in:
lib/svix/models/operational_webhook_endpoint_secret_out.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ OperationalWebhookEndpointSecretOut

Returns a new instance of OperationalWebhookEndpointSecretOut.



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/svix/models/operational_webhook_endpoint_secret_out.rb', line 16

def initialize(attributes = {})
  unless attributes.is_a?(Hash)
    fail(
      ArgumentError,
      "The input argument (attributes) must be a hash in `Svix::OperationalWebhookEndpointSecretOut` new method"
    )
  end

  attributes.each do |k, v|
    unless ALL_FIELD.include?(k.to_s)
      fail(ArgumentError, "The field #{k} is not part of Svix::OperationalWebhookEndpointSecretOut")
    end

    instance_variable_set("@#{k}", v)
    instance_variable_set("@__#{k}_is_defined", true)
  end
end

Instance Attribute Details

#keyObject

The endpoint’s verification secret.

Format: ‘base64` encoded random bytes optionally prefixed with `whsec_`. It is recommended to not set this and let the server generate the secret.



11
12
13
# File 'lib/svix/models/operational_webhook_endpoint_secret_out.rb', line 11

def key
  @key
end

Class Method Details

.deserialize(attributes = {}) ⇒ Object



34
35
36
37
38
39
# File 'lib/svix/models/operational_webhook_endpoint_secret_out.rb', line 34

def self.deserialize(attributes = {})
  attributes = attributes.transform_keys(&:to_s)
  attrs = Hash.new
  attrs["key"] = attributes["key"]
  new(attrs)
end

Instance Method Details

#serializeObject



41
42
43
44
45
# File 'lib/svix/models/operational_webhook_endpoint_secret_out.rb', line 41

def serialize
  out = Hash.new
  out["key"] = Svix::serialize_primitive(@key) if @key
  out
end

#to_jsonObject

Serializes the object to a json string

Returns:

  • String



49
50
51
# File 'lib/svix/models/operational_webhook_endpoint_secret_out.rb', line 49

def to_json
  JSON.dump(serialize)
end