Class: TrophyApiClient::CreateStreakFreezesResponse
- Inherits:
-
Object
- Object
- TrophyApiClient::CreateStreakFreezesResponse
- Defined in:
- lib/trophy_api_client/types/create_streak_freezes_response.rb
Overview
Response containing any issues encountered while creating streak freezes.
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#issues ⇒ Array<TrophyApiClient::BulkInsertIssue>
readonly
Array of issues encountered during freeze creation.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ TrophyApiClient::CreateStreakFreezesResponse
Deserialize a JSON object to an instance of CreateStreakFreezesResponse.
-
.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(issues:, additional_properties: nil) ⇒ TrophyApiClient::CreateStreakFreezesResponse constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of CreateStreakFreezesResponse to a JSON object.
Constructor Details
#initialize(issues:, additional_properties: nil) ⇒ TrophyApiClient::CreateStreakFreezesResponse
23 24 25 26 27 |
# File 'lib/trophy_api_client/types/create_streak_freezes_response.rb', line 23 def initialize(issues:, additional_properties: nil) @issues = issues @additional_properties = additional_properties @_field_set = { "issues": issues } end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
13 14 15 |
# File 'lib/trophy_api_client/types/create_streak_freezes_response.rb', line 13 def additional_properties @additional_properties end |
#issues ⇒ Array<TrophyApiClient::BulkInsertIssue> (readonly)
Returns Array of issues encountered during freeze creation.
11 12 13 |
# File 'lib/trophy_api_client/types/create_streak_freezes_response.rb', line 11 def issues @issues end |
Class Method Details
.from_json(json_object:) ⇒ TrophyApiClient::CreateStreakFreezesResponse
Deserialize a JSON object to an instance of CreateStreakFreezesResponse
33 34 35 36 37 38 39 40 41 |
# File 'lib/trophy_api_client/types/create_streak_freezes_response.rb', line 33 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) issues = parsed_json["issues"]&.map do |item| item = item.to_json TrophyApiClient::BulkInsertIssue.from_json(json_object: item) end new(issues: issues, 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.
56 57 58 |
# File 'lib/trophy_api_client/types/create_streak_freezes_response.rb', line 56 def self.validate_raw(obj:) obj.issues.is_a?(Array) != false || raise("Passed value for field obj.issues is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of CreateStreakFreezesResponse to a JSON object
46 47 48 |
# File 'lib/trophy_api_client/types/create_streak_freezes_response.rb', line 46 def to_json(*_args) @_field_set&.to_json end |