candidhealth 0.41.1 → 0.41.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b1f1581a9d0308972fbfab2f3ff1426006583c8bb4ae90159ce0063ef1b040b5
4
- data.tar.gz: 6a83ef1e0ee7262a4ea5a8f3f6f2cfcb5374ba9b17a2f303d96844ccd0fe7c9b
3
+ metadata.gz: 2a462fcf21d7f061320986e29871df7a4c81ef11d6738fdaa2fb2ae682e7ac58
4
+ data.tar.gz: d0b72d8003bdf6703cfbf4d95936eb546545de79b5752fe046a168cc2eb65b3e
5
5
  SHA512:
6
- metadata.gz: 62a6cba30ae59aa915e494b92f00650945c2d3ce295811d323d5b5d74327e9ec0328c51b69d89476c06bd41e67cd4923780feff650f6f6048d0b0bd380efd2f6
7
- data.tar.gz: 48dc4453fce9b101e922f08fe9a7eae8c5de4b19e660c1e3539870159a94629fa543da9f7f019bfb48e9d8d39bf11e64c7fc77f4b9acd1e1579bb8753845bbb9
6
+ metadata.gz: bfa7481054bc894f77700448180378d988d69788a37f1a61ea35a86c1a2fa2e3e70dd5c2d1b9e69baadde0f3d51b27c01f683e9a6c7dd51c8387453a93513af4
7
+ data.tar.gz: 3a41ba9039fc607ecab6eafb800ced419b13d40e6fe049343f4c63a0d0471a044067014fdbac7a4480716ded7eed41df64adc5adf52c5a9e55cf13b934fa6e3b
@@ -8,9 +8,12 @@ module CandidApiClient
8
8
  module V1
9
9
  module Types
10
10
  class ChargeCaptureBundleSummary
11
- # @return [Integer] The count of charge captures which are not bundled.
11
+ # @return [Integer] The count of charge captures which are not in a bundle or in a bundle with a
12
+ # status other than SUCCESSFUL.
12
13
  attr_reader :charge_capture_unbundled_count
13
- # @return [Integer] The count of charge capture bundles that are in an error state.
14
+ # @return [Integer] The count of charge capture bundles that have a bundle status of NOT_STARTED.
15
+ attr_reader :charge_capture_bundles_not_started_count
16
+ # @return [Integer] The count of charge capture bundles that have a bundle status of IN_ERROR.
14
17
  attr_reader :charge_capture_bundles_in_error_count
15
18
  # @return [Integer] The number of ChargeCapturePostBilledChange items that are unresolved.
16
19
  attr_reader :charge_capture_unresolved_change_count
@@ -22,19 +25,23 @@ module CandidApiClient
22
25
 
23
26
  OMIT = Object.new
24
27
 
25
- # @param charge_capture_unbundled_count [Integer] The count of charge captures which are not bundled.
26
- # @param charge_capture_bundles_in_error_count [Integer] The count of charge capture bundles that are in an error state.
28
+ # @param charge_capture_unbundled_count [Integer] The count of charge captures which are not in a bundle or in a bundle with a
29
+ # status other than SUCCESSFUL.
30
+ # @param charge_capture_bundles_not_started_count [Integer] The count of charge capture bundles that have a bundle status of NOT_STARTED.
31
+ # @param charge_capture_bundles_in_error_count [Integer] The count of charge capture bundles that have a bundle status of IN_ERROR.
27
32
  # @param charge_capture_unresolved_change_count [Integer] The number of ChargeCapturePostBilledChange items that are unresolved.
28
33
  # @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
29
34
  # @return [CandidApiClient::ChargeCaptureBundles::V1::Types::ChargeCaptureBundleSummary]
30
- def initialize(charge_capture_unbundled_count:, charge_capture_bundles_in_error_count:,
31
- charge_capture_unresolved_change_count:, additional_properties: nil)
35
+ def initialize(charge_capture_unbundled_count:, charge_capture_bundles_not_started_count:,
36
+ charge_capture_bundles_in_error_count:, charge_capture_unresolved_change_count:, additional_properties: nil)
32
37
  @charge_capture_unbundled_count = charge_capture_unbundled_count
38
+ @charge_capture_bundles_not_started_count = charge_capture_bundles_not_started_count
33
39
  @charge_capture_bundles_in_error_count = charge_capture_bundles_in_error_count
34
40
  @charge_capture_unresolved_change_count = charge_capture_unresolved_change_count
35
41
  @additional_properties = additional_properties
36
42
  @_field_set = {
37
43
  "charge_capture_unbundled_count": charge_capture_unbundled_count,
44
+ "charge_capture_bundles_not_started_count": charge_capture_bundles_not_started_count,
38
45
  "charge_capture_bundles_in_error_count": charge_capture_bundles_in_error_count,
39
46
  "charge_capture_unresolved_change_count": charge_capture_unresolved_change_count
40
47
  }
@@ -47,10 +54,12 @@ module CandidApiClient
47
54
  def self.from_json(json_object:)
48
55
  struct = JSON.parse(json_object, object_class: OpenStruct)
49
56
  charge_capture_unbundled_count = struct["charge_capture_unbundled_count"]
57
+ charge_capture_bundles_not_started_count = struct["charge_capture_bundles_not_started_count"]
50
58
  charge_capture_bundles_in_error_count = struct["charge_capture_bundles_in_error_count"]
51
59
  charge_capture_unresolved_change_count = struct["charge_capture_unresolved_change_count"]
52
60
  new(
53
61
  charge_capture_unbundled_count: charge_capture_unbundled_count,
62
+ charge_capture_bundles_not_started_count: charge_capture_bundles_not_started_count,
54
63
  charge_capture_bundles_in_error_count: charge_capture_bundles_in_error_count,
55
64
  charge_capture_unresolved_change_count: charge_capture_unresolved_change_count,
56
65
  additional_properties: struct
@@ -72,6 +81,7 @@ module CandidApiClient
72
81
  # @return [Void]
73
82
  def self.validate_raw(obj:)
74
83
  obj.charge_capture_unbundled_count.is_a?(Integer) != false || raise("Passed value for field obj.charge_capture_unbundled_count is not the expected type, validation failed.")
84
+ obj.charge_capture_bundles_not_started_count.is_a?(Integer) != false || raise("Passed value for field obj.charge_capture_bundles_not_started_count is not the expected type, validation failed.")
75
85
  obj.charge_capture_bundles_in_error_count.is_a?(Integer) != false || raise("Passed value for field obj.charge_capture_bundles_in_error_count is not the expected type, validation failed.")
76
86
  obj.charge_capture_unresolved_change_count.is_a?(Integer) != false || raise("Passed value for field obj.charge_capture_unresolved_change_count is not the expected type, validation failed.")
77
87
  end
@@ -9,6 +9,8 @@ module CandidApiClient
9
9
  WOMAN = "WOMAN"
10
10
  NON_BINARY = "NON_BINARY"
11
11
  TWO_SPIRIT = "TWO_SPIRIT"
12
+ FEMALE_TO_MALE = "FEMALE_TO_MALE"
13
+ MALE_TO_FEMALE = "MALE_TO_FEMALE"
12
14
  OTHER = "OTHER"
13
15
  UNKNOWN = "UNKNOWN"
14
16
  REFUSED = "REFUSED"
@@ -6,6 +6,7 @@ require_relative "types/coverage"
6
6
  require_relative "types/coverages_page"
7
7
  require "json"
8
8
  require "date"
9
+ require_relative "types/payer_plan_group_fields"
9
10
  require_relative "types/service_type_code"
10
11
  require_relative "types/eligibility_check_metadata"
11
12
  require_relative "types/coverage_eligibility_check_response"
@@ -509,6 +510,35 @@ module CandidApiClient
509
510
  end
510
511
  end
511
512
 
513
+ # Finds all coverages associated with the given ppg_id and updates the ppg_fields
514
+ # for each coverage.
515
+ #
516
+ # @param ppg_id [String]
517
+ # @param request [Hash] Request of type CandidApiClient::PreEncounter::Coverages::V1::Types::PayerPlanGroupFields, as a Hash
518
+ # * :payer_plan_group_id (String)
519
+ # * :payer_id (String)
520
+ # * :payer_name (String)
521
+ # * :plan_type (CandidApiClient::PreEncounter::Coverages::V1::Types::NetworkType)
522
+ # @param request_options [CandidApiClient::RequestOptions]
523
+ # @return [Void]
524
+ # @example
525
+ # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
526
+ # api.pre_encounter.coverages.v_1.batch_update_ppg(ppg_id: "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", request: { payer_plan_group_id: "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", payer_id: "string", payer_name: "string", plan_type: SELF_PAY })
527
+ def batch_update_ppg(ppg_id:, request:, request_options: nil)
528
+ @request_client.conn.post do |req|
529
+ req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
530
+ req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
531
+ req.headers = {
532
+ **(req.headers || {}),
533
+ **@request_client.get_headers,
534
+ **(request_options&.additional_headers || {})
535
+ }.compact
536
+ req.body = { **(request || {}), **(request_options&.additional_body_parameters || {}) }.compact
537
+ req.url "#{@request_client.get_url(environment: PreEncounter,
538
+ request_options: request_options)}/coverages/v1/batch-update-ppg/#{ppg_id}"
539
+ end
540
+ end
541
+
512
542
  # Initiates an eligibility check. Returns the metadata of the check if
513
543
  # successfully initiated.
514
544
  #
@@ -1083,6 +1113,37 @@ module CandidApiClient
1083
1113
  end
1084
1114
  end
1085
1115
 
1116
+ # Finds all coverages associated with the given ppg_id and updates the ppg_fields
1117
+ # for each coverage.
1118
+ #
1119
+ # @param ppg_id [String]
1120
+ # @param request [Hash] Request of type CandidApiClient::PreEncounter::Coverages::V1::Types::PayerPlanGroupFields, as a Hash
1121
+ # * :payer_plan_group_id (String)
1122
+ # * :payer_id (String)
1123
+ # * :payer_name (String)
1124
+ # * :plan_type (CandidApiClient::PreEncounter::Coverages::V1::Types::NetworkType)
1125
+ # @param request_options [CandidApiClient::RequestOptions]
1126
+ # @return [Void]
1127
+ # @example
1128
+ # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
1129
+ # api.pre_encounter.coverages.v_1.batch_update_ppg(ppg_id: "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", request: { payer_plan_group_id: "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32", payer_id: "string", payer_name: "string", plan_type: SELF_PAY })
1130
+ def batch_update_ppg(ppg_id:, request:, request_options: nil)
1131
+ Async do
1132
+ @request_client.conn.post do |req|
1133
+ req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
1134
+ req.headers["Authorization"] = request_options.token unless request_options&.token.nil?
1135
+ req.headers = {
1136
+ **(req.headers || {}),
1137
+ **@request_client.get_headers,
1138
+ **(request_options&.additional_headers || {})
1139
+ }.compact
1140
+ req.body = { **(request || {}), **(request_options&.additional_body_parameters || {}) }.compact
1141
+ req.url "#{@request_client.get_url(environment: PreEncounter,
1142
+ request_options: request_options)}/coverages/v1/batch-update-ppg/#{ppg_id}"
1143
+ end
1144
+ end
1145
+ end
1146
+
1086
1147
  # Initiates an eligibility check. Returns the metadata of the check if
1087
1148
  # successfully initiated.
1088
1149
  #
@@ -0,0 +1,92 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "network_type"
4
+ require "ostruct"
5
+ require "json"
6
+
7
+ module CandidApiClient
8
+ module PreEncounter
9
+ module Coverages
10
+ module V1
11
+ module Types
12
+ class PayerPlanGroupFields
13
+ # @return [String]
14
+ attr_reader :payer_plan_group_id
15
+ # @return [String]
16
+ attr_reader :payer_id
17
+ # @return [String]
18
+ attr_reader :payer_name
19
+ # @return [CandidApiClient::PreEncounter::Coverages::V1::Types::NetworkType]
20
+ attr_reader :plan_type
21
+ # @return [OpenStruct] Additional properties unmapped to the current class definition
22
+ attr_reader :additional_properties
23
+ # @return [Object]
24
+ attr_reader :_field_set
25
+ protected :_field_set
26
+
27
+ OMIT = Object.new
28
+
29
+ # @param payer_plan_group_id [String]
30
+ # @param payer_id [String]
31
+ # @param payer_name [String]
32
+ # @param plan_type [CandidApiClient::PreEncounter::Coverages::V1::Types::NetworkType]
33
+ # @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
34
+ # @return [CandidApiClient::PreEncounter::Coverages::V1::Types::PayerPlanGroupFields]
35
+ def initialize(payer_plan_group_id:, payer_id:, payer_name:, plan_type:, additional_properties: nil)
36
+ @payer_plan_group_id = payer_plan_group_id
37
+ @payer_id = payer_id
38
+ @payer_name = payer_name
39
+ @plan_type = plan_type
40
+ @additional_properties = additional_properties
41
+ @_field_set = {
42
+ "payer_plan_group_id": payer_plan_group_id,
43
+ "payer_id": payer_id,
44
+ "payer_name": payer_name,
45
+ "plan_type": plan_type
46
+ }
47
+ end
48
+
49
+ # Deserialize a JSON object to an instance of PayerPlanGroupFields
50
+ #
51
+ # @param json_object [String]
52
+ # @return [CandidApiClient::PreEncounter::Coverages::V1::Types::PayerPlanGroupFields]
53
+ def self.from_json(json_object:)
54
+ struct = JSON.parse(json_object, object_class: OpenStruct)
55
+ payer_plan_group_id = struct["payer_plan_group_id"]
56
+ payer_id = struct["payer_id"]
57
+ payer_name = struct["payer_name"]
58
+ plan_type = struct["plan_type"]
59
+ new(
60
+ payer_plan_group_id: payer_plan_group_id,
61
+ payer_id: payer_id,
62
+ payer_name: payer_name,
63
+ plan_type: plan_type,
64
+ additional_properties: struct
65
+ )
66
+ end
67
+
68
+ # Serialize an instance of PayerPlanGroupFields to a JSON object
69
+ #
70
+ # @return [String]
71
+ def to_json(*_args)
72
+ @_field_set&.to_json
73
+ end
74
+
75
+ # Leveraged for Union-type generation, validate_raw attempts to parse the given
76
+ # hash and check each fields type against the current object's property
77
+ # definitions.
78
+ #
79
+ # @param obj [Object]
80
+ # @return [Void]
81
+ def self.validate_raw(obj:)
82
+ obj.payer_plan_group_id.is_a?(String) != false || raise("Passed value for field obj.payer_plan_group_id is not the expected type, validation failed.")
83
+ obj.payer_id.is_a?(String) != false || raise("Passed value for field obj.payer_id is not the expected type, validation failed.")
84
+ obj.payer_name.is_a?(String) != false || raise("Passed value for field obj.payer_name is not the expected type, validation failed.")
85
+ obj.plan_type.is_a?(CandidApiClient::PreEncounter::Coverages::V1::Types::NetworkType) != false || raise("Passed value for field obj.plan_type is not the expected type, validation failed.")
86
+ end
87
+ end
88
+ end
89
+ end
90
+ end
91
+ end
92
+ end
@@ -45,6 +45,7 @@ module CandidApiClient
45
45
  # * :social_security_number (String)
46
46
  # * :biological_sex (CandidApiClient::PreEncounter::Common::Types::Sex)
47
47
  # * :sexual_orientation (CandidApiClient::PreEncounter::Common::Types::SexualOrientation)
48
+ # * :pronouns (Array<String>)
48
49
  # * :race (CandidApiClient::PreEncounter::Common::Types::Race)
49
50
  # * :ethnicity (CandidApiClient::PreEncounter::Common::Types::Ethnicity)
50
51
  # * :disability_status (CandidApiClient::PreEncounter::Common::Types::DisabilityStatus)
@@ -120,7 +121,7 @@ module CandidApiClient
120
121
  # @return [CandidApiClient::PreEncounter::Patients::V1::Types::Patient]
121
122
  # @example
122
123
  # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
123
- # api.pre_encounter.patients.v_1.create(skip_duplicate_check: true, request: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
124
+ # api.pre_encounter.patients.v_1.create(skip_duplicate_check: true, request: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, pronouns: ["string"], race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
124
125
  def create(request:, skip_duplicate_check: nil, request_options: nil)
125
126
  response = @request_client.conn.post do |req|
126
127
  req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
@@ -164,6 +165,7 @@ module CandidApiClient
164
165
  # * :social_security_number (String)
165
166
  # * :biological_sex (CandidApiClient::PreEncounter::Common::Types::Sex)
166
167
  # * :sexual_orientation (CandidApiClient::PreEncounter::Common::Types::SexualOrientation)
168
+ # * :pronouns (Array<String>)
167
169
  # * :race (CandidApiClient::PreEncounter::Common::Types::Race)
168
170
  # * :ethnicity (CandidApiClient::PreEncounter::Common::Types::Ethnicity)
169
171
  # * :disability_status (CandidApiClient::PreEncounter::Common::Types::DisabilityStatus)
@@ -239,7 +241,7 @@ module CandidApiClient
239
241
  # @return [CandidApiClient::PreEncounter::Patients::V1::Types::Patient]
240
242
  # @example
241
243
  # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
242
- # api.pre_encounter.patients.v_1.create_with_mrn(skip_duplicate_check: true, request: { mrn: "string", name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
244
+ # api.pre_encounter.patients.v_1.create_with_mrn(skip_duplicate_check: true, request: { mrn: "string", name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, pronouns: ["string"], race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
243
245
  def create_with_mrn(request:, skip_duplicate_check: nil, request_options: nil)
244
246
  response = @request_client.conn.post do |req|
245
247
  req.options.timeout = request_options.timeout_in_seconds unless request_options&.timeout_in_seconds.nil?
@@ -408,6 +410,7 @@ module CandidApiClient
408
410
  # * :social_security_number (String)
409
411
  # * :biological_sex (CandidApiClient::PreEncounter::Common::Types::Sex)
410
412
  # * :sexual_orientation (CandidApiClient::PreEncounter::Common::Types::SexualOrientation)
413
+ # * :pronouns (Array<String>)
411
414
  # * :race (CandidApiClient::PreEncounter::Common::Types::Race)
412
415
  # * :ethnicity (CandidApiClient::PreEncounter::Common::Types::Ethnicity)
413
416
  # * :disability_status (CandidApiClient::PreEncounter::Common::Types::DisabilityStatus)
@@ -486,7 +489,7 @@ module CandidApiClient
486
489
  # api.pre_encounter.patients.v_1.update(
487
490
  # id: "string",
488
491
  # version: "string",
489
- # request: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] }
492
+ # request: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, pronouns: ["string"], race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] }
490
493
  # )
491
494
  def update(id:, version:, request:, request_options: nil)
492
495
  response = @request_client.conn.put do |req|
@@ -647,6 +650,7 @@ module CandidApiClient
647
650
  # * :social_security_number (String)
648
651
  # * :biological_sex (CandidApiClient::PreEncounter::Common::Types::Sex)
649
652
  # * :sexual_orientation (CandidApiClient::PreEncounter::Common::Types::SexualOrientation)
653
+ # * :pronouns (Array<String>)
650
654
  # * :race (CandidApiClient::PreEncounter::Common::Types::Race)
651
655
  # * :ethnicity (CandidApiClient::PreEncounter::Common::Types::Ethnicity)
652
656
  # * :disability_status (CandidApiClient::PreEncounter::Common::Types::DisabilityStatus)
@@ -722,7 +726,7 @@ module CandidApiClient
722
726
  # @return [CandidApiClient::PreEncounter::Patients::V1::Types::Patient]
723
727
  # @example
724
728
  # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
725
- # api.pre_encounter.patients.v_1.create(skip_duplicate_check: true, request: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
729
+ # api.pre_encounter.patients.v_1.create(skip_duplicate_check: true, request: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, pronouns: ["string"], race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
726
730
  def create(request:, skip_duplicate_check: nil, request_options: nil)
727
731
  Async do
728
732
  response = @request_client.conn.post do |req|
@@ -768,6 +772,7 @@ module CandidApiClient
768
772
  # * :social_security_number (String)
769
773
  # * :biological_sex (CandidApiClient::PreEncounter::Common::Types::Sex)
770
774
  # * :sexual_orientation (CandidApiClient::PreEncounter::Common::Types::SexualOrientation)
775
+ # * :pronouns (Array<String>)
771
776
  # * :race (CandidApiClient::PreEncounter::Common::Types::Race)
772
777
  # * :ethnicity (CandidApiClient::PreEncounter::Common::Types::Ethnicity)
773
778
  # * :disability_status (CandidApiClient::PreEncounter::Common::Types::DisabilityStatus)
@@ -843,7 +848,7 @@ module CandidApiClient
843
848
  # @return [CandidApiClient::PreEncounter::Patients::V1::Types::Patient]
844
849
  # @example
845
850
  # api = CandidApiClient::Client.new(base_url: "https://api.example.com", environment: CandidApiClient::Environment::PRODUCTION)
846
- # api.pre_encounter.patients.v_1.create_with_mrn(skip_duplicate_check: true, request: { mrn: "string", name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
851
+ # api.pre_encounter.patients.v_1.create_with_mrn(skip_duplicate_check: true, request: { mrn: "string", name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, pronouns: ["string"], race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] })
847
852
  def create_with_mrn(request:, skip_duplicate_check: nil, request_options: nil)
848
853
  Async do
849
854
  response = @request_client.conn.post do |req|
@@ -1022,6 +1027,7 @@ module CandidApiClient
1022
1027
  # * :social_security_number (String)
1023
1028
  # * :biological_sex (CandidApiClient::PreEncounter::Common::Types::Sex)
1024
1029
  # * :sexual_orientation (CandidApiClient::PreEncounter::Common::Types::SexualOrientation)
1030
+ # * :pronouns (Array<String>)
1025
1031
  # * :race (CandidApiClient::PreEncounter::Common::Types::Race)
1026
1032
  # * :ethnicity (CandidApiClient::PreEncounter::Common::Types::Ethnicity)
1027
1033
  # * :disability_status (CandidApiClient::PreEncounter::Common::Types::DisabilityStatus)
@@ -1100,7 +1106,7 @@ module CandidApiClient
1100
1106
  # api.pre_encounter.patients.v_1.update(
1101
1107
  # id: "string",
1102
1108
  # version: "string",
1103
- # request: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] }
1109
+ # request: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, other_names: [{ family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }], other_identifiers: [{ value: "string", system: "string" }], gender: MAN, birth_date: DateTime.parse(2023-01-15), social_security_number: "string", biological_sex: FEMALE, sexual_orientation: HETEROSEXUAL, pronouns: ["string"], race: AMERICAN_INDIAN_OR_ALASKA_NATIVE, ethnicity: HISPANIC_OR_LATINO, disability_status: DISABLED, marital_status: ANNULLED, deceased: DateTime.parse(2024-01-15T09:30:00.000Z), multiple_birth: 1, primary_address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }, other_addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], primary_telecom: { value: "string", use: HOME }, other_telecoms: [{ value: "string", use: HOME }], email: "string", electronic_communication_opt_in: true, photo: "string", language: "string", external_provenance: { external_id: "string", system_name: "string" }, contacts: [{ relationship: [SELF], name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecoms: [{ value: "string", use: HOME }], addresses: [{ use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } }], period: { }, hipaa_authorization: true }], general_practitioners: [{ name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }], filing_order: { coverages: ["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"] }, non_insurance_payers: ["string"], non_insurance_payer_associations: [{ id: "string" }], guarantor: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, telecom: { value: "string", use: HOME }, email: "string", birth_date: DateTime.parse(2023-01-15), address: { use: HOME, line: ["string"], city: "string", state: "string", postal_code: "string", country: "string", period: { } } }, self_pay: true, authorizations: [{ payer_id: "string", payer_name: "string", additional_payer_information: { }, authorization_number: "string", cpt_code: "string", apply_for_all_cpt_codes: true, units: VISIT, quantity: 1, period: { }, notes: "string" }], referrals: [{ provider: { name: { family: "string", given: ["string"], use: USUAL, period: { }, suffix: "string" }, type: PRIMARY, npi: "string", telecoms: [{ value: "string", use: HOME }], addresses: , period: { }, canonical_id: "string", fax: "string" }, referral_number: "string" }], primary_service_facility_id: "string", do_not_invoice_reason: BANKRUPTCY, note_ids: ["string"], tag_ids: ["string"] }
1104
1110
  # )
1105
1111
  def update(id:, version:, request:, request_options: nil)
1106
1112
  Async do
@@ -49,6 +49,8 @@ module CandidApiClient
49
49
  attr_reader :biological_sex
50
50
  # @return [CandidApiClient::PreEncounter::Common::Types::SexualOrientation] The sexual orientation of the patient.
51
51
  attr_reader :sexual_orientation
52
+ # @return [Array<String>] The pronouns of the patient.
53
+ attr_reader :pronouns
52
54
  # @return [CandidApiClient::PreEncounter::Common::Types::Race]
53
55
  attr_reader :race
54
56
  # @return [CandidApiClient::PreEncounter::Common::Types::Ethnicity]
@@ -125,6 +127,7 @@ module CandidApiClient
125
127
  # AdministrativeGender
126
128
  # https://www.hl7.org/fhir/valueset-administrative-gender.html
127
129
  # @param sexual_orientation [CandidApiClient::PreEncounter::Common::Types::SexualOrientation] The sexual orientation of the patient.
130
+ # @param pronouns [Array<String>] The pronouns of the patient.
128
131
  # @param race [CandidApiClient::PreEncounter::Common::Types::Race]
129
132
  # @param ethnicity [CandidApiClient::PreEncounter::Common::Types::Ethnicity]
130
133
  # @param disability_status [CandidApiClient::PreEncounter::Common::Types::DisabilityStatus]
@@ -158,7 +161,7 @@ module CandidApiClient
158
161
  # @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
159
162
  # @return [CandidApiClient::PreEncounter::Patients::V1::Types::MutablePatient]
160
163
  def initialize(name:, other_names:, birth_date:, biological_sex:, primary_address:, other_addresses:, primary_telecom:, other_telecoms:, contacts:, general_practitioners:, filing_order:, other_identifiers: OMIT, gender: OMIT,
161
- social_security_number: OMIT, sexual_orientation: OMIT, race: OMIT, ethnicity: OMIT, disability_status: OMIT, marital_status: OMIT, deceased: OMIT, multiple_birth: OMIT, email: OMIT, electronic_communication_opt_in: OMIT, photo: OMIT, language: OMIT, external_provenance: OMIT, non_insurance_payers: OMIT, non_insurance_payer_associations: OMIT, guarantor: OMIT, self_pay: OMIT, authorizations: OMIT, referrals: OMIT, primary_service_facility_id: OMIT, do_not_invoice_reason: OMIT, note_ids: OMIT, tag_ids: OMIT, additional_properties: nil)
164
+ social_security_number: OMIT, sexual_orientation: OMIT, pronouns: OMIT, race: OMIT, ethnicity: OMIT, disability_status: OMIT, marital_status: OMIT, deceased: OMIT, multiple_birth: OMIT, email: OMIT, electronic_communication_opt_in: OMIT, photo: OMIT, language: OMIT, external_provenance: OMIT, non_insurance_payers: OMIT, non_insurance_payer_associations: OMIT, guarantor: OMIT, self_pay: OMIT, authorizations: OMIT, referrals: OMIT, primary_service_facility_id: OMIT, do_not_invoice_reason: OMIT, note_ids: OMIT, tag_ids: OMIT, additional_properties: nil)
162
165
  @name = name
163
166
  @other_names = other_names
164
167
  @other_identifiers = other_identifiers if other_identifiers != OMIT
@@ -167,6 +170,7 @@ module CandidApiClient
167
170
  @social_security_number = social_security_number if social_security_number != OMIT
168
171
  @biological_sex = biological_sex
169
172
  @sexual_orientation = sexual_orientation if sexual_orientation != OMIT
173
+ @pronouns = pronouns if pronouns != OMIT
170
174
  @race = race if race != OMIT
171
175
  @ethnicity = ethnicity if ethnicity != OMIT
172
176
  @disability_status = disability_status if disability_status != OMIT
@@ -209,6 +213,7 @@ module CandidApiClient
209
213
  "social_security_number": social_security_number,
210
214
  "biological_sex": biological_sex,
211
215
  "sexual_orientation": sexual_orientation,
216
+ "pronouns": pronouns,
212
217
  "race": race,
213
218
  "ethnicity": ethnicity,
214
219
  "disability_status": disability_status,
@@ -268,6 +273,7 @@ module CandidApiClient
268
273
  social_security_number = struct["social_security_number"]
269
274
  biological_sex = struct["biological_sex"]
270
275
  sexual_orientation = struct["sexual_orientation"]
276
+ pronouns = struct["pronouns"]
271
277
  race = struct["race"]
272
278
  ethnicity = struct["ethnicity"]
273
279
  disability_status = struct["disability_status"]
@@ -351,6 +357,7 @@ module CandidApiClient
351
357
  social_security_number: social_security_number,
352
358
  biological_sex: biological_sex,
353
359
  sexual_orientation: sexual_orientation,
360
+ pronouns: pronouns,
354
361
  race: race,
355
362
  ethnicity: ethnicity,
356
363
  disability_status: disability_status,
@@ -405,6 +412,7 @@ module CandidApiClient
405
412
  obj.social_security_number&.is_a?(String) != false || raise("Passed value for field obj.social_security_number is not the expected type, validation failed.")
406
413
  obj.biological_sex.is_a?(CandidApiClient::PreEncounter::Common::Types::Sex) != false || raise("Passed value for field obj.biological_sex is not the expected type, validation failed.")
407
414
  obj.sexual_orientation&.is_a?(CandidApiClient::PreEncounter::Common::Types::SexualOrientation) != false || raise("Passed value for field obj.sexual_orientation is not the expected type, validation failed.")
415
+ obj.pronouns&.is_a?(Array) != false || raise("Passed value for field obj.pronouns is not the expected type, validation failed.")
408
416
  obj.race&.is_a?(CandidApiClient::PreEncounter::Common::Types::Race) != false || raise("Passed value for field obj.race is not the expected type, validation failed.")
409
417
  obj.ethnicity&.is_a?(CandidApiClient::PreEncounter::Common::Types::Ethnicity) != false || raise("Passed value for field obj.ethnicity is not the expected type, validation failed.")
410
418
  obj.disability_status&.is_a?(CandidApiClient::PreEncounter::Common::Types::DisabilityStatus) != false || raise("Passed value for field obj.disability_status is not the expected type, validation failed.")
@@ -50,6 +50,8 @@ module CandidApiClient
50
50
  attr_reader :biological_sex
51
51
  # @return [CandidApiClient::PreEncounter::Common::Types::SexualOrientation] The sexual orientation of the patient.
52
52
  attr_reader :sexual_orientation
53
+ # @return [Array<String>] The pronouns of the patient.
54
+ attr_reader :pronouns
53
55
  # @return [CandidApiClient::PreEncounter::Common::Types::Race]
54
56
  attr_reader :race
55
57
  # @return [CandidApiClient::PreEncounter::Common::Types::Ethnicity]
@@ -127,6 +129,7 @@ module CandidApiClient
127
129
  # AdministrativeGender
128
130
  # https://www.hl7.org/fhir/valueset-administrative-gender.html
129
131
  # @param sexual_orientation [CandidApiClient::PreEncounter::Common::Types::SexualOrientation] The sexual orientation of the patient.
132
+ # @param pronouns [Array<String>] The pronouns of the patient.
130
133
  # @param race [CandidApiClient::PreEncounter::Common::Types::Race]
131
134
  # @param ethnicity [CandidApiClient::PreEncounter::Common::Types::Ethnicity]
132
135
  # @param disability_status [CandidApiClient::PreEncounter::Common::Types::DisabilityStatus]
@@ -160,7 +163,7 @@ module CandidApiClient
160
163
  # @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
161
164
  # @return [CandidApiClient::PreEncounter::Patients::V1::Types::MutablePatientWithMrn]
162
165
  def initialize(mrn:, name:, other_names:, birth_date:, biological_sex:, primary_address:, other_addresses:, primary_telecom:, other_telecoms:, contacts:, general_practitioners:, filing_order:, other_identifiers: OMIT, gender: OMIT,
163
- social_security_number: OMIT, sexual_orientation: OMIT, race: OMIT, ethnicity: OMIT, disability_status: OMIT, marital_status: OMIT, deceased: OMIT, multiple_birth: OMIT, email: OMIT, electronic_communication_opt_in: OMIT, photo: OMIT, language: OMIT, external_provenance: OMIT, non_insurance_payers: OMIT, non_insurance_payer_associations: OMIT, guarantor: OMIT, self_pay: OMIT, authorizations: OMIT, referrals: OMIT, primary_service_facility_id: OMIT, do_not_invoice_reason: OMIT, note_ids: OMIT, tag_ids: OMIT, additional_properties: nil)
166
+ social_security_number: OMIT, sexual_orientation: OMIT, pronouns: OMIT, race: OMIT, ethnicity: OMIT, disability_status: OMIT, marital_status: OMIT, deceased: OMIT, multiple_birth: OMIT, email: OMIT, electronic_communication_opt_in: OMIT, photo: OMIT, language: OMIT, external_provenance: OMIT, non_insurance_payers: OMIT, non_insurance_payer_associations: OMIT, guarantor: OMIT, self_pay: OMIT, authorizations: OMIT, referrals: OMIT, primary_service_facility_id: OMIT, do_not_invoice_reason: OMIT, note_ids: OMIT, tag_ids: OMIT, additional_properties: nil)
164
167
  @mrn = mrn
165
168
  @name = name
166
169
  @other_names = other_names
@@ -170,6 +173,7 @@ module CandidApiClient
170
173
  @social_security_number = social_security_number if social_security_number != OMIT
171
174
  @biological_sex = biological_sex
172
175
  @sexual_orientation = sexual_orientation if sexual_orientation != OMIT
176
+ @pronouns = pronouns if pronouns != OMIT
173
177
  @race = race if race != OMIT
174
178
  @ethnicity = ethnicity if ethnicity != OMIT
175
179
  @disability_status = disability_status if disability_status != OMIT
@@ -213,6 +217,7 @@ module CandidApiClient
213
217
  "social_security_number": social_security_number,
214
218
  "biological_sex": biological_sex,
215
219
  "sexual_orientation": sexual_orientation,
220
+ "pronouns": pronouns,
216
221
  "race": race,
217
222
  "ethnicity": ethnicity,
218
223
  "disability_status": disability_status,
@@ -273,6 +278,7 @@ module CandidApiClient
273
278
  social_security_number = struct["social_security_number"]
274
279
  biological_sex = struct["biological_sex"]
275
280
  sexual_orientation = struct["sexual_orientation"]
281
+ pronouns = struct["pronouns"]
276
282
  race = struct["race"]
277
283
  ethnicity = struct["ethnicity"]
278
284
  disability_status = struct["disability_status"]
@@ -357,6 +363,7 @@ module CandidApiClient
357
363
  social_security_number: social_security_number,
358
364
  biological_sex: biological_sex,
359
365
  sexual_orientation: sexual_orientation,
366
+ pronouns: pronouns,
360
367
  race: race,
361
368
  ethnicity: ethnicity,
362
369
  disability_status: disability_status,
@@ -412,6 +419,7 @@ module CandidApiClient
412
419
  obj.social_security_number&.is_a?(String) != false || raise("Passed value for field obj.social_security_number is not the expected type, validation failed.")
413
420
  obj.biological_sex.is_a?(CandidApiClient::PreEncounter::Common::Types::Sex) != false || raise("Passed value for field obj.biological_sex is not the expected type, validation failed.")
414
421
  obj.sexual_orientation&.is_a?(CandidApiClient::PreEncounter::Common::Types::SexualOrientation) != false || raise("Passed value for field obj.sexual_orientation is not the expected type, validation failed.")
422
+ obj.pronouns&.is_a?(Array) != false || raise("Passed value for field obj.pronouns is not the expected type, validation failed.")
415
423
  obj.race&.is_a?(CandidApiClient::PreEncounter::Common::Types::Race) != false || raise("Passed value for field obj.race is not the expected type, validation failed.")
416
424
  obj.ethnicity&.is_a?(CandidApiClient::PreEncounter::Common::Types::Ethnicity) != false || raise("Passed value for field obj.ethnicity is not the expected type, validation failed.")
417
425
  obj.disability_status&.is_a?(CandidApiClient::PreEncounter::Common::Types::DisabilityStatus) != false || raise("Passed value for field obj.disability_status is not the expected type, validation failed.")
@@ -68,6 +68,8 @@ module CandidApiClient
68
68
  attr_reader :biological_sex
69
69
  # @return [CandidApiClient::PreEncounter::Common::Types::SexualOrientation] The sexual orientation of the patient.
70
70
  attr_reader :sexual_orientation
71
+ # @return [Array<String>] The pronouns of the patient.
72
+ attr_reader :pronouns
71
73
  # @return [CandidApiClient::PreEncounter::Common::Types::Race]
72
74
  attr_reader :race
73
75
  # @return [CandidApiClient::PreEncounter::Common::Types::Ethnicity]
@@ -156,6 +158,7 @@ module CandidApiClient
156
158
  # AdministrativeGender
157
159
  # https://www.hl7.org/fhir/valueset-administrative-gender.html
158
160
  # @param sexual_orientation [CandidApiClient::PreEncounter::Common::Types::SexualOrientation] The sexual orientation of the patient.
161
+ # @param pronouns [Array<String>] The pronouns of the patient.
159
162
  # @param race [CandidApiClient::PreEncounter::Common::Types::Race]
160
163
  # @param ethnicity [CandidApiClient::PreEncounter::Common::Types::Ethnicity]
161
164
  # @param disability_status [CandidApiClient::PreEncounter::Common::Types::DisabilityStatus]
@@ -189,7 +192,7 @@ module CandidApiClient
189
192
  # @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
190
193
  # @return [CandidApiClient::PreEncounter::Patients::V1::Types::Patient]
191
194
  def initialize(id:, mrn:, organization_id:, deactivated:, version:, updated_at:, updating_user_id:, name:,
192
- other_names:, birth_date:, biological_sex:, primary_address:, other_addresses:, primary_telecom:, other_telecoms:, contacts:, general_practitioners:, filing_order:, other_identifiers: OMIT, gender: OMIT, social_security_number: OMIT, sexual_orientation: OMIT, race: OMIT, ethnicity: OMIT, disability_status: OMIT, marital_status: OMIT, deceased: OMIT, multiple_birth: OMIT, email: OMIT, electronic_communication_opt_in: OMIT, photo: OMIT, language: OMIT, external_provenance: OMIT, non_insurance_payers: OMIT, non_insurance_payer_associations: OMIT, guarantor: OMIT, self_pay: OMIT, authorizations: OMIT, referrals: OMIT, primary_service_facility_id: OMIT, do_not_invoice_reason: OMIT, note_ids: OMIT, tag_ids: OMIT, additional_properties: nil)
195
+ other_names:, birth_date:, biological_sex:, primary_address:, other_addresses:, primary_telecom:, other_telecoms:, contacts:, general_practitioners:, filing_order:, other_identifiers: OMIT, gender: OMIT, social_security_number: OMIT, sexual_orientation: OMIT, pronouns: OMIT, race: OMIT, ethnicity: OMIT, disability_status: OMIT, marital_status: OMIT, deceased: OMIT, multiple_birth: OMIT, email: OMIT, electronic_communication_opt_in: OMIT, photo: OMIT, language: OMIT, external_provenance: OMIT, non_insurance_payers: OMIT, non_insurance_payer_associations: OMIT, guarantor: OMIT, self_pay: OMIT, authorizations: OMIT, referrals: OMIT, primary_service_facility_id: OMIT, do_not_invoice_reason: OMIT, note_ids: OMIT, tag_ids: OMIT, additional_properties: nil)
193
196
  @id = id
194
197
  @mrn = mrn
195
198
  @organization_id = organization_id
@@ -205,6 +208,7 @@ module CandidApiClient
205
208
  @social_security_number = social_security_number if social_security_number != OMIT
206
209
  @biological_sex = biological_sex
207
210
  @sexual_orientation = sexual_orientation if sexual_orientation != OMIT
211
+ @pronouns = pronouns if pronouns != OMIT
208
212
  @race = race if race != OMIT
209
213
  @ethnicity = ethnicity if ethnicity != OMIT
210
214
  @disability_status = disability_status if disability_status != OMIT
@@ -254,6 +258,7 @@ module CandidApiClient
254
258
  "social_security_number": social_security_number,
255
259
  "biological_sex": biological_sex,
256
260
  "sexual_orientation": sexual_orientation,
261
+ "pronouns": pronouns,
257
262
  "race": race,
258
263
  "ethnicity": ethnicity,
259
264
  "disability_status": disability_status,
@@ -320,6 +325,7 @@ module CandidApiClient
320
325
  social_security_number = struct["social_security_number"]
321
326
  biological_sex = struct["biological_sex"]
322
327
  sexual_orientation = struct["sexual_orientation"]
328
+ pronouns = struct["pronouns"]
323
329
  race = struct["race"]
324
330
  ethnicity = struct["ethnicity"]
325
331
  disability_status = struct["disability_status"]
@@ -410,6 +416,7 @@ module CandidApiClient
410
416
  social_security_number: social_security_number,
411
417
  biological_sex: biological_sex,
412
418
  sexual_orientation: sexual_orientation,
419
+ pronouns: pronouns,
413
420
  race: race,
414
421
  ethnicity: ethnicity,
415
422
  disability_status: disability_status,
@@ -471,6 +478,7 @@ module CandidApiClient
471
478
  obj.social_security_number&.is_a?(String) != false || raise("Passed value for field obj.social_security_number is not the expected type, validation failed.")
472
479
  obj.biological_sex.is_a?(CandidApiClient::PreEncounter::Common::Types::Sex) != false || raise("Passed value for field obj.biological_sex is not the expected type, validation failed.")
473
480
  obj.sexual_orientation&.is_a?(CandidApiClient::PreEncounter::Common::Types::SexualOrientation) != false || raise("Passed value for field obj.sexual_orientation is not the expected type, validation failed.")
481
+ obj.pronouns&.is_a?(Array) != false || raise("Passed value for field obj.pronouns is not the expected type, validation failed.")
474
482
  obj.race&.is_a?(CandidApiClient::PreEncounter::Common::Types::Race) != false || raise("Passed value for field obj.race is not the expected type, validation failed.")
475
483
  obj.ethnicity&.is_a?(CandidApiClient::PreEncounter::Common::Types::Ethnicity) != false || raise("Passed value for field obj.ethnicity is not the expected type, validation failed.")
476
484
  obj.disability_status&.is_a?(CandidApiClient::PreEncounter::Common::Types::DisabilityStatus) != false || raise("Passed value for field obj.disability_status is not the expected type, validation failed.")
data/lib/requests.rb CHANGED
@@ -43,7 +43,7 @@ module CandidApiClient
43
43
 
44
44
  # @return [Hash{String => String}]
45
45
  def get_headers
46
- headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "candidhealth", "X-Fern-SDK-Version": "0.41.1" }
46
+ headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "candidhealth", "X-Fern-SDK-Version": "0.41.2" }
47
47
  headers["Authorization"] = ((@token.is_a? Method) ? @token.call : @token) unless token.nil?
48
48
  headers
49
49
  end
@@ -87,7 +87,7 @@ module CandidApiClient
87
87
 
88
88
  # @return [Hash{String => String}]
89
89
  def get_headers
90
- headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "candidhealth", "X-Fern-SDK-Version": "0.41.1" }
90
+ headers = { "X-Fern-Language": "Ruby", "X-Fern-SDK-Name": "candidhealth", "X-Fern-SDK-Version": "0.41.2" }
91
91
  headers["Authorization"] = ((@token.is_a? Method) ? @token.call : @token) unless token.nil?
92
92
  headers
93
93
  end
data/lib/types_export.rb CHANGED
@@ -307,6 +307,7 @@ require_relative "candidhealth/pre_encounter/appointments/v_1/types/mutable_appo
307
307
  require_relative "candidhealth/pre_encounter/appointments/v_1/types/appointment"
308
308
  require_relative "candidhealth/pre_encounter/appointments/v_1/types/visit"
309
309
  require_relative "candidhealth/pre_encounter/appointments/v_1/types/visits_page"
310
+ require_relative "candidhealth/pre_encounter/coverages/v_1/types/payer_plan_group_fields"
310
311
  require_relative "candidhealth/pre_encounter/coverages/v_1/types/coverages_page"
311
312
  require_relative "candidhealth/pre_encounter/coverages/v_1/types/latest_eligibility_check"
312
313
  require_relative "candidhealth/pre_encounter/coverages/v_1/types/eligibility_check_metadata"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: candidhealth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.1
4
+ version: 0.41.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ''
@@ -561,6 +561,7 @@ files:
561
561
  - lib/candidhealth/pre_encounter/coverages/v_1/types/member_info.rb
562
562
  - lib/candidhealth/pre_encounter/coverages/v_1/types/mutable_coverage.rb
563
563
  - lib/candidhealth/pre_encounter/coverages/v_1/types/network_type.rb
564
+ - lib/candidhealth/pre_encounter/coverages/v_1/types/payer_plan_group_fields.rb
564
565
  - lib/candidhealth/pre_encounter/coverages/v_1/types/plan_coverage.rb
565
566
  - lib/candidhealth/pre_encounter/coverages/v_1/types/plan_coverage_details.rb
566
567
  - lib/candidhealth/pre_encounter/coverages/v_1/types/plan_date.rb