Class: CandidApiClient::CustomSchemas::V1::Types::SchemaValidationError
- Inherits:
-
Object
- Object
- CandidApiClient::CustomSchemas::V1::Types::SchemaValidationError
- Defined in:
- lib/candidhealth/custom_schemas/v_1/types/schema_validation_error.rb
Instance Attribute Summary collapse
- #discriminant ⇒ String readonly
- #member ⇒ Object readonly
Class Method Summary collapse
-
.from_json(json_object:) ⇒ CandidApiClient::CustomSchemas::V1::Types::SchemaValidationError
Deserialize a JSON object to an instance of SchemaValidationError.
- .key_name_already_exists(member:) ⇒ CandidApiClient::CustomSchemas::V1::Types::SchemaValidationError
- .schema_name_already_exists(member:) ⇒ CandidApiClient::CustomSchemas::V1::Types::SchemaValidationError
-
.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(member:, discriminant:) ⇒ CandidApiClient::CustomSchemas::V1::Types::SchemaValidationError constructor
-
#is_a?(obj) ⇒ Boolean
For Union Types, is_a? functionality is delegated to the wrapped member.
- #kind_of? ⇒ Object
-
#to_json(*_args) ⇒ String
For Union Types, to_json functionality is delegated to the wrapped member.
Constructor Details
#initialize(member:, discriminant:) ⇒ CandidApiClient::CustomSchemas::V1::Types::SchemaValidationError
23 24 25 26 |
# File 'lib/candidhealth/custom_schemas/v_1/types/schema_validation_error.rb', line 23 def initialize(member:, discriminant:) @member = member @discriminant = discriminant end |
Instance Attribute Details
#discriminant ⇒ String (readonly)
15 16 17 |
# File 'lib/candidhealth/custom_schemas/v_1/types/schema_validation_error.rb', line 15 def discriminant @discriminant end |
#member ⇒ Object (readonly)
13 14 15 |
# File 'lib/candidhealth/custom_schemas/v_1/types/schema_validation_error.rb', line 13 def member @member end |
Class Method Details
.from_json(json_object:) ⇒ CandidApiClient::CustomSchemas::V1::Types::SchemaValidationError
Deserialize a JSON object to an instance of SchemaValidationError
32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/candidhealth/custom_schemas/v_1/types/schema_validation_error.rb', line 32 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) member = case struct.type when "schema_name_already_exists" CandidApiClient::CustomSchemas::V1::Types::SchemaWithNameAlreadyExistsError.from_json(json_object: json_object) when "key_name_already_exists" CandidApiClient::CustomSchemas::V1::Types::KeyWithNameAlreadyExistsError.from_json(json_object: json_object) else CandidApiClient::CustomSchemas::V1::Types::SchemaWithNameAlreadyExistsError.from_json(json_object: json_object) end new(member: member, discriminant: struct.type) end |
.key_name_already_exists(member:) ⇒ CandidApiClient::CustomSchemas::V1::Types::SchemaValidationError
93 94 95 |
# File 'lib/candidhealth/custom_schemas/v_1/types/schema_validation_error.rb', line 93 def self.key_name_already_exists(member:) new(member: member, discriminant: "key_name_already_exists") end |
.schema_name_already_exists(member:) ⇒ CandidApiClient::CustomSchemas::V1::Types::SchemaValidationError
87 88 89 |
# File 'lib/candidhealth/custom_schemas/v_1/types/schema_validation_error.rb', line 87 def self.schema_name_already_exists(member:) new(member: member, discriminant: "schema_name_already_exists") 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.
66 67 68 69 70 71 72 73 74 75 |
# File 'lib/candidhealth/custom_schemas/v_1/types/schema_validation_error.rb', line 66 def self.validate_raw(obj:) case obj.type when "schema_name_already_exists" CandidApiClient::CustomSchemas::V1::Types::SchemaWithNameAlreadyExistsError.validate_raw(obj: obj) when "key_name_already_exists" CandidApiClient::CustomSchemas::V1::Types::KeyWithNameAlreadyExistsError.validate_raw(obj: obj) else raise("Passed value matched no type within the union, validation failed.") end end |
Instance Method Details
#is_a?(obj) ⇒ Boolean
For Union Types, is_a? functionality is delegated to the wrapped member.
81 82 83 |
# File 'lib/candidhealth/custom_schemas/v_1/types/schema_validation_error.rb', line 81 def is_a?(obj) @member.is_a?(obj) end |
#kind_of? ⇒ Object
18 |
# File 'lib/candidhealth/custom_schemas/v_1/types/schema_validation_error.rb', line 18 alias kind_of? is_a? |
#to_json(*_args) ⇒ String
For Union Types, to_json functionality is delegated to the wrapped member.
48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/candidhealth/custom_schemas/v_1/types/schema_validation_error.rb', line 48 def to_json(*_args) case @discriminant when "schema_name_already_exists" { **@member.to_json, type: @discriminant }.to_json when "key_name_already_exists" { **@member.to_json, type: @discriminant }.to_json else { "type": @discriminant, value: @member }.to_json end @member.to_json end |