Module: Algolia::Ingestion::SourceUpdateInput
- Defined in:
- lib/algolia/models/ingestion/source_update_input.rb
Class Method Summary collapse
-
.build(data) ⇒ Object
Builds the object.
-
.openapi_one_of ⇒ Object
List of class defined in oneOf (OpenAPI v3).
Class Method Details
.build(data) ⇒ Object
Builds the object
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/algolia/models/ingestion/source_update_input.rb', line 26 def build(data) # Go through the list of oneOf items and attempt to identify the appropriate one. # Note: # - We do not attempt to check whether exactly one item matches. # - No advanced validation of types in some cases (e.g. "x: { type: string }" will happily match { x: 123 }) # due to the way the deserialization is made in the base_object template (it just casts without verifying). # - TODO: scalar values are de facto behaving as if they were nullable. # - TODO: logging when debugging is set. openapi_one_of.each do |klass| begin # "nullable: true" next if klass == :AnyType typed_data = find_and_cast_into_type(klass, data) return typed_data if typed_data # rescue all errors so we keep iterating even if the current item lookup raises rescue end end openapi_one_of.include?(:AnyType) ? data : nil end |
.openapi_one_of ⇒ Object
List of class defined in oneOf (OpenAPI v3)
11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/algolia/models/ingestion/source_update_input.rb', line 11 def openapi_one_of [ :"SourceBigQuery", :"SourceCSV", :"SourceGA4BigQueryExport", :"SourceJSON", :"SourceUpdateCommercetools", :"SourceUpdateDocker", :"SourceUpdateShopify" ] end |