Class: Courier::Users::Preferences::UserPreferencesUpdateResponse
- Inherits:
-
Object
- Object
- Courier::Users::Preferences::UserPreferencesUpdateResponse
- Defined in:
- lib/trycourier/users/preferences/types/user_preferences_update_response.rb
Instance Attribute Summary collapse
-
#additional_properties ⇒ Object
readonly
Returns the value of attribute additional_properties.
-
#message ⇒ Object
readonly
Returns the value of attribute message.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Users::Preferences::UserPreferencesUpdateResponse
Deserialize a JSON object to an instance of UserPreferencesUpdateResponse.
-
.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(message:, additional_properties: nil) ⇒ Users::Preferences::UserPreferencesUpdateResponse constructor
-
#to_json(*_args) ⇒ JSON
Serialize an instance of UserPreferencesUpdateResponse to a JSON object.
Constructor Details
#initialize(message:, additional_properties: nil) ⇒ Users::Preferences::UserPreferencesUpdateResponse
14 15 16 17 18 19 |
# File 'lib/trycourier/users/preferences/types/user_preferences_update_response.rb', line 14 def initialize(message:, additional_properties: nil) # @type [String] @message = # @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.
9 10 11 |
# File 'lib/trycourier/users/preferences/types/user_preferences_update_response.rb', line 9 def additional_properties @additional_properties end |
#message ⇒ Object (readonly)
Returns the value of attribute message.
9 10 11 |
# File 'lib/trycourier/users/preferences/types/user_preferences_update_response.rb', line 9 def @message end |
Class Method Details
.from_json(json_object:) ⇒ Users::Preferences::UserPreferencesUpdateResponse
Deserialize a JSON object to an instance of UserPreferencesUpdateResponse
25 26 27 28 29 30 |
# File 'lib/trycourier/users/preferences/types/user_preferences_update_response.rb', line 25 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) JSON.parse(json_object) = struct. new(message: , 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.
43 44 45 |
# File 'lib/trycourier/users/preferences/types/user_preferences_update_response.rb', line 43 def self.validate_raw(obj:) obj..is_a?(String) != false || raise("Passed value for field obj.message is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ JSON
Serialize an instance of UserPreferencesUpdateResponse to a JSON object
35 36 37 |
# File 'lib/trycourier/users/preferences/types/user_preferences_update_response.rb', line 35 def to_json(*_args) { "message": @message }.to_json end |