Class: Svix::EndpointSecretRotateIn
- Inherits:
-
Object
- Object
- Svix::EndpointSecretRotateIn
- Defined in:
- lib/svix/models/endpoint_secret_rotate_in.rb
Instance Attribute Summary collapse
-
#key ⇒ Object
The endpoint’s verification secret.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ EndpointSecretRotateIn
constructor
A new instance of EndpointSecretRotateIn.
- #serialize ⇒ Object
-
#to_json ⇒ Object
Serializes the object to a json string.
Constructor Details
#initialize(attributes = {}) ⇒ EndpointSecretRotateIn
Returns a new instance of EndpointSecretRotateIn.
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/svix/models/endpoint_secret_rotate_in.rb', line 16 def initialize(attributes = {}) unless attributes.is_a?(Hash) fail( ArgumentError, "The input argument (attributes) must be a hash in `Svix::EndpointSecretRotateIn` 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::EndpointSecretRotateIn") 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/endpoint_secret_rotate_in.rb', line 11 def key @key end |
Class Method Details
.deserialize(attributes = {}) ⇒ Object
34 35 36 37 38 39 |
# File 'lib/svix/models/endpoint_secret_rotate_in.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
#serialize ⇒ Object
41 42 43 44 45 |
# File 'lib/svix/models/endpoint_secret_rotate_in.rb', line 41 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
49 50 51 |
# File 'lib/svix/models/endpoint_secret_rotate_in.rb', line 49 def to_json JSON.dump(serialize) end |