Class: Merge::Hris::DebugModelLogSummary
- Inherits:
-
Object
- Object
- Merge::Hris::DebugModelLogSummary
- Defined in:
- lib/merge_ruby_client/hris/types/debug_model_log_summary.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #method ⇒ String readonly
- #status_code ⇒ Integer readonly
- #url ⇒ String readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Merge::Hris::DebugModelLogSummary
Deserialize a JSON object to an instance of DebugModelLogSummary.
-
.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(url:, method:, status_code:, additional_properties: nil) ⇒ Merge::Hris::DebugModelLogSummary constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of DebugModelLogSummary to a JSON object.
Constructor Details
#initialize(url:, method:, status_code:, additional_properties: nil) ⇒ Merge::Hris::DebugModelLogSummary
28 29 30 31 32 33 34 |
# File 'lib/merge_ruby_client/hris/types/debug_model_log_summary.rb', line 28 def initialize(url:, method:, status_code:, additional_properties: nil) @url = url @method = method @status_code = status_code @additional_properties = additional_properties @_field_set = { "url": url, "method": method, "status_code": status_code } 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/hris/types/debug_model_log_summary.rb', line 16 def additional_properties @additional_properties end |
#method ⇒ String (readonly)
12 13 14 |
# File 'lib/merge_ruby_client/hris/types/debug_model_log_summary.rb', line 12 def method @method end |
#status_code ⇒ Integer (readonly)
14 15 16 |
# File 'lib/merge_ruby_client/hris/types/debug_model_log_summary.rb', line 14 def status_code @status_code end |
#url ⇒ String (readonly)
10 11 12 |
# File 'lib/merge_ruby_client/hris/types/debug_model_log_summary.rb', line 10 def url @url end |
Class Method Details
.from_json(json_object:) ⇒ Merge::Hris::DebugModelLogSummary
Deserialize a JSON object to an instance of DebugModelLogSummary
40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/merge_ruby_client/hris/types/debug_model_log_summary.rb', line 40 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) url = parsed_json["url"] method = parsed_json["method"] status_code = parsed_json["status_code"] new( url: url, method: method, status_code: status_code, 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.
67 68 69 70 71 |
# File 'lib/merge_ruby_client/hris/types/debug_model_log_summary.rb', line 67 def self.validate_raw(obj:) obj.url.is_a?(String) != false || raise("Passed value for field obj.url is not the expected type, validation failed.") obj.method.is_a?(String) != false || raise("Passed value for field obj.method is not the expected type, validation failed.") obj.status_code.is_a?(Integer) != false || raise("Passed value for field obj.status_code is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of DebugModelLogSummary to a JSON object
57 58 59 |
# File 'lib/merge_ruby_client/hris/types/debug_model_log_summary.rb', line 57 def to_json(*_args) @_field_set&.to_json end |