Class: CandidApiClient::FeeSchedules::V3::Types::PayerThresholdsPage

Inherits:
Object
  • Object
show all
Defined in:
lib/candidhealth/fee_schedules/v_3/types/payer_thresholds_page.rb

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(payer_thresholds:, prev_page_token: OMIT, next_page_token: OMIT, additional_properties: nil) ⇒ CandidApiClient::FeeSchedules::V3::Types::PayerThresholdsPage

Parameters:

  • payer_thresholds (Hash{String => CandidApiClient::FeeSchedules::V3::Types::PayerThreshold})
  • prev_page_token (String) (defaults to: OMIT)
  • next_page_token (String) (defaults to: OMIT)
  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/candidhealth/fee_schedules/v_3/types/payer_thresholds_page.rb', line 30

def initialize(payer_thresholds:, prev_page_token: OMIT, next_page_token: OMIT, additional_properties: nil)
  @payer_thresholds = payer_thresholds
  @prev_page_token = prev_page_token if prev_page_token != OMIT
  @next_page_token = next_page_token if next_page_token != OMIT
  @additional_properties = additional_properties
  @_field_set = {
    "payer_thresholds": payer_thresholds,
    "prev_page_token": prev_page_token,
    "next_page_token": next_page_token
  }.reject do |_k, v|
    v == OMIT
  end
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



18
19
20
# File 'lib/candidhealth/fee_schedules/v_3/types/payer_thresholds_page.rb', line 18

def additional_properties
  @additional_properties
end

#next_page_tokenString (readonly)

Returns:

  • (String)


16
17
18
# File 'lib/candidhealth/fee_schedules/v_3/types/payer_thresholds_page.rb', line 16

def next_page_token
  @next_page_token
end

#payer_thresholdsHash{String => CandidApiClient::FeeSchedules::V3::Types::PayerThreshold} (readonly)



12
13
14
# File 'lib/candidhealth/fee_schedules/v_3/types/payer_thresholds_page.rb', line 12

def payer_thresholds
  @payer_thresholds
end

#prev_page_tokenString (readonly)

Returns:

  • (String)


14
15
16
# File 'lib/candidhealth/fee_schedules/v_3/types/payer_thresholds_page.rb', line 14

def prev_page_token
  @prev_page_token
end

Class Method Details

.from_json(json_object:) ⇒ CandidApiClient::FeeSchedules::V3::Types::PayerThresholdsPage

Deserialize a JSON object to an instance of PayerThresholdsPage

Parameters:

  • json_object (String)

Returns:



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/candidhealth/fee_schedules/v_3/types/payer_thresholds_page.rb', line 48

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  payer_thresholds = parsed_json["payer_thresholds"]&.transform_values do |value|
    value = value.to_json
    CandidApiClient::FeeSchedules::V3::Types::PayerThreshold.from_json(json_object: value)
  end
  prev_page_token = struct["prev_page_token"]
  next_page_token = struct["next_page_token"]
  new(
    payer_thresholds: payer_thresholds,
    prev_page_token: prev_page_token,
    next_page_token: next_page_token,
    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)


78
79
80
81
82
# File 'lib/candidhealth/fee_schedules/v_3/types/payer_thresholds_page.rb', line 78

def self.validate_raw(obj:)
  obj.payer_thresholds.is_a?(Hash) != false || raise("Passed value for field obj.payer_thresholds is not the expected type, validation failed.")
  obj.prev_page_token&.is_a?(String) != false || raise("Passed value for field obj.prev_page_token is not the expected type, validation failed.")
  obj.next_page_token&.is_a?(String) != false || raise("Passed value for field obj.next_page_token is not the expected type, validation failed.")
end

Instance Method Details

#to_json(*_args) ⇒ String

Serialize an instance of PayerThresholdsPage to a JSON object

Returns:

  • (String)


68
69
70
# File 'lib/candidhealth/fee_schedules/v_3/types/payer_thresholds_page.rb', line 68

def to_json(*_args)
  @_field_set&.to_json
end