Class: Courier::Send::InvalidUserRecipient
- Inherits:
-
Object
- Object
- Courier::Send::InvalidUserRecipient
- Defined in:
- lib/trycourier/send/types/invalid_user_recipient.rb
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
readonly
Returns the value of attribute additional_properties.
-
#list_id ⇒ Object
readonly
Returns the value of attribute list_id.
-
#list_pattern ⇒ Object
readonly
Returns the value of attribute list_pattern.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Send::InvalidUserRecipient
Deserialize a JSON object to an instance of InvalidUserRecipient.
-
.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(list_id:, list_pattern:, additional_properties: nil) ⇒ Send::InvalidUserRecipient constructor
-
#to_json(*_args) ⇒ JSON
Serialize an instance of InvalidUserRecipient to a JSON object.
Constructor Details
#initialize(list_id:, list_pattern:, additional_properties: nil) ⇒ Send::InvalidUserRecipient
14 15 16 17 18 19 20 21 |
# File 'lib/trycourier/send/types/invalid_user_recipient.rb', line 14 def initialize(list_id:, list_pattern:, additional_properties: nil) # @type [String] @list_id = list_id # @type [String] @list_pattern = list_pattern # @type [OpenStruct] Additional properties unmapped to the current class definition @additional_properties = additional_properties end |
Instance Attribute Details
#additional_properties ⇒ Object (readonly)
Returns the value of attribute additional_properties.
8 9 10 |
# File 'lib/trycourier/send/types/invalid_user_recipient.rb', line 8 def additional_properties @additional_properties end |
#list_id ⇒ Object (readonly)
Returns the value of attribute list_id.
8 9 10 |
# File 'lib/trycourier/send/types/invalid_user_recipient.rb', line 8 def list_id @list_id end |
#list_pattern ⇒ Object (readonly)
Returns the value of attribute list_pattern.
8 9 10 |
# File 'lib/trycourier/send/types/invalid_user_recipient.rb', line 8 def list_pattern @list_pattern end |
Class Method Details
.from_json(json_object:) ⇒ Send::InvalidUserRecipient
Deserialize a JSON object to an instance of InvalidUserRecipient
27 28 29 30 31 32 33 |
# File 'lib/trycourier/send/types/invalid_user_recipient.rb', line 27 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) JSON.parse(json_object) list_id = struct.list_id list_pattern = struct.list_pattern new(list_id: list_id, list_pattern: list_pattern, 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.
46 47 48 49 |
# File 'lib/trycourier/send/types/invalid_user_recipient.rb', line 46 def self.validate_raw(obj:) obj.list_id.is_a?(String) != false || raise("Passed value for field obj.list_id is not the expected type, validation failed.") obj.list_pattern.is_a?(String) != false || raise("Passed value for field obj.list_pattern is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ JSON
Serialize an instance of InvalidUserRecipient to a JSON object
38 39 40 |
# File 'lib/trycourier/send/types/invalid_user_recipient.rb', line 38 def to_json(*_args) { "list_id": @list_id, "list_pattern": @list_pattern }.to_json end |