Class: CandidApiClient::PreEncounter::Common::Types::ResourcePage
- Inherits:
-
Object
- Object
- CandidApiClient::PreEncounter::Common::Types::ResourcePage
- Defined in:
- lib/candidhealth/pre_encounter/common/types/resource_page.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #next_page_token ⇒ String readonly
- #prev_page_token ⇒ String readonly
- #total ⇒ Integer readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ CandidApiClient::PreEncounter::Common::Types::ResourcePage
Deserialize a JSON object to an instance of ResourcePage.
-
.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(total:, next_page_token: OMIT, prev_page_token: OMIT, additional_properties: nil) ⇒ CandidApiClient::PreEncounter::Common::Types::ResourcePage constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of ResourcePage to a JSON object.
Constructor Details
#initialize(total:, next_page_token: OMIT, prev_page_token: OMIT, additional_properties: nil) ⇒ CandidApiClient::PreEncounter::Common::Types::ResourcePage
30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/candidhealth/pre_encounter/common/types/resource_page.rb', line 30 def initialize(total:, next_page_token: OMIT, prev_page_token: OMIT, additional_properties: nil) @next_page_token = next_page_token if next_page_token != OMIT @prev_page_token = prev_page_token if prev_page_token != OMIT @total = total @additional_properties = additional_properties @_field_set = { "next_page_token": next_page_token, "prev_page_token": prev_page_token, "total": total }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
18 19 20 |
# File 'lib/candidhealth/pre_encounter/common/types/resource_page.rb', line 18 def additional_properties @additional_properties end |
#next_page_token ⇒ String (readonly)
12 13 14 |
# File 'lib/candidhealth/pre_encounter/common/types/resource_page.rb', line 12 def next_page_token @next_page_token end |
#prev_page_token ⇒ String (readonly)
14 15 16 |
# File 'lib/candidhealth/pre_encounter/common/types/resource_page.rb', line 14 def prev_page_token @prev_page_token end |
#total ⇒ Integer (readonly)
16 17 18 |
# File 'lib/candidhealth/pre_encounter/common/types/resource_page.rb', line 16 def total @total end |
Class Method Details
.from_json(json_object:) ⇒ CandidApiClient::PreEncounter::Common::Types::ResourcePage
Deserialize a JSON object to an instance of ResourcePage
48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/candidhealth/pre_encounter/common/types/resource_page.rb', line 48 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) next_page_token = struct["next_page_token"] prev_page_token = struct["prev_page_token"] total = struct["total"] new( next_page_token: next_page_token, prev_page_token: prev_page_token, total: total, 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.
74 75 76 77 78 |
# File 'lib/candidhealth/pre_encounter/common/types/resource_page.rb', line 74 def self.validate_raw(obj:) obj.next_page_token&.is_a?(String) != false || raise("Passed value for field obj.next_page_token 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.total.is_a?(Integer) != false || raise("Passed value for field obj.total is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of ResourcePage to a JSON object
64 65 66 |
# File 'lib/candidhealth/pre_encounter/common/types/resource_page.rb', line 64 def to_json(*_args) @_field_set&.to_json end |