Class: Merge::Crm::WebhookReceiver
- Inherits:
-
Object
- Object
- Merge::Crm::WebhookReceiver
- Defined in:
- lib/merge_ruby_client/crm/types/webhook_receiver.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #event ⇒ String readonly
- #is_active ⇒ Boolean readonly
- #key ⇒ String readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Merge::Crm::WebhookReceiver
Deserialize a JSON object to an instance of WebhookReceiver.
-
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given hash and check each fields type against the current object’s property definitions.
Instance Method Summary collapse
- #initialize(event:, is_active:, key: OMIT, additional_properties: nil) ⇒ Merge::Crm::WebhookReceiver constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of WebhookReceiver to a JSON object.
Constructor Details
#initialize(event:, is_active:, key: OMIT, additional_properties: nil) ⇒ Merge::Crm::WebhookReceiver
28 29 30 31 32 33 34 35 36 |
# File 'lib/merge_ruby_client/crm/types/webhook_receiver.rb', line 28 def initialize(event:, is_active:, key: OMIT, additional_properties: nil) @event = event @is_active = is_active @key = key if key != OMIT @additional_properties = additional_properties @_field_set = { "event": event, "is_active": is_active, "key": key }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
16 17 18 |
# File 'lib/merge_ruby_client/crm/types/webhook_receiver.rb', line 16 def additional_properties @additional_properties end |
#event ⇒ String (readonly)
10 11 12 |
# File 'lib/merge_ruby_client/crm/types/webhook_receiver.rb', line 10 def event @event end |
#is_active ⇒ Boolean (readonly)
12 13 14 |
# File 'lib/merge_ruby_client/crm/types/webhook_receiver.rb', line 12 def is_active @is_active end |
#key ⇒ String (readonly)
14 15 16 |
# File 'lib/merge_ruby_client/crm/types/webhook_receiver.rb', line 14 def key @key end |
Class Method Details
.from_json(json_object:) ⇒ Merge::Crm::WebhookReceiver
Deserialize a JSON object to an instance of WebhookReceiver
42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/merge_ruby_client/crm/types/webhook_receiver.rb', line 42 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) event = parsed_json["event"] is_active = parsed_json["is_active"] key = parsed_json["key"] new( event: event, is_active: is_active, key: key, additional_properties: struct ) end |
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given
hash and check each fields type against the current object's property
definitions.
69 70 71 72 73 |
# File 'lib/merge_ruby_client/crm/types/webhook_receiver.rb', line 69 def self.validate_raw(obj:) obj.event.is_a?(String) != false || raise("Passed value for field obj.event is not the expected type, validation failed.") obj.is_active.is_a?(Boolean) != false || raise("Passed value for field obj.is_active is not the expected type, validation failed.") obj.key&.is_a?(String) != false || raise("Passed value for field obj.key is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of WebhookReceiver to a JSON object
59 60 61 |
# File 'lib/merge_ruby_client/crm/types/webhook_receiver.rb', line 59 def to_json(*_args) @_field_set&.to_json end |