Class: TrophyApiClient::CreateStreakFreezesResponse

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(issues:, additional_properties: nil) ⇒ TrophyApiClient::CreateStreakFreezesResponse

Parameters:

  • issues (Array<TrophyApiClient::BulkInsertIssue>)

    Array of issues encountered during freeze creation.

  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



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_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    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

#issuesArray<TrophyApiClient::BulkInsertIssue> (readonly)

Returns Array of issues encountered during freeze creation.

Returns:



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

Parameters:

  • json_object (String)

Returns:



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.

Parameters:

  • obj (Object)

Returns:

  • (Void)


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

Returns:

  • (String)


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