Class: Svix::SinkSecretOut
- Inherits:
-
Object
- Object
- Svix::SinkSecretOut
- Defined in:
- lib/svix/models/sink_secret_out.rb
Instance Attribute Summary collapse
-
#key ⇒ Object
The endpoint’s verification secret.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ SinkSecretOut
constructor
A new instance of SinkSecretOut.
- #serialize ⇒ Object
-
#to_json ⇒ Object
Serializes the object to a json string.
Constructor Details
#initialize(attributes = {}) ⇒ SinkSecretOut
16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/svix/models/sink_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::SinkSecretOut` 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::SinkSecretOut") end instance_variable_set("@#{k}", v) instance_variable_set("@__#{k}_is_defined", true) end end |
Instance Attribute Details
#key ⇒ Object
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/sink_secret_out.rb', line 11 def key @key end |
Class Method Details
.deserialize(attributes = {}) ⇒ Object
31 32 33 34 35 36 |
# File 'lib/svix/models/sink_secret_out.rb', line 31 def self.deserialize(attributes = {}) attributes = attributes.transform_keys(&:to_s) attrs = Hash.new attrs["key"] = attributes["key"] new(attrs) end |
Instance Method Details
#serialize ⇒ Object
38 39 40 41 42 |
# File 'lib/svix/models/sink_secret_out.rb', line 38 def serialize out = Hash.new out["key"] = Svix::serialize_primitive(@key) if @key out end |
#to_json ⇒ Object
Serializes the object to a json string
46 47 48 |
# File 'lib/svix/models/sink_secret_out.rb', line 46 def to_json JSON.dump(serialize) end |