Class: PaysecureApiDocumentationLive::UnionTypeLookUp
- Inherits:
-
Object
- Object
- PaysecureApiDocumentationLive::UnionTypeLookUp
- Includes:
- CoreLibrary
- Defined in:
- lib/paysecure_api_documentation_live/utilities/union_type_lookup.rb
Overview
The UnionTypeLookUp class serves as a utility class for
storing and managing type combinator templates. It acts as a container for the templates
used in handling various oneof/anyof instances within the sdk.
Class Method Summary collapse
-
.get(name) ⇒ Object
rubocop:enable Lint/RedundantCopDisableDirective, Style/HashSyntax, Layout/FirstArgumentIndentation.
-
.union_types ⇒ Object
rubocop:disable Lint/RedundantCopDisableDirective, Style/HashSyntax, Layout/FirstArgumentIndentation.
Class Method Details
.get(name) ⇒ Object
rubocop:enable Lint/RedundantCopDisableDirective, Style/HashSyntax, Layout/FirstArgumentIndentation
46 47 48 |
# File 'lib/paysecure_api_documentation_live/utilities/union_type_lookup.rb', line 46 def self.get(name) UnionTypeLookUp.union_types[name] end |
.union_types ⇒ Object
rubocop:disable Lint/RedundantCopDisableDirective, Style/HashSyntax, Layout/FirstArgumentIndentation
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/paysecure_api_documentation_live/utilities/union_type_lookup.rb', line 13 def self.union_types { :FeeAmount => OneOf.new( [ LeafType.new(Float), LeafType.new(Integer) ] ), :Gateway1Error => OneOf.new( [ LeafType.new(Error7, UnionTypeContext.new( is_nullable: true )), LeafType.new(String, UnionTypeContext.new( is_nullable: true )) ] ), :Gateway1Balances => OneOf.new( [ LeafType.new(Balance1), LeafType.new(Balance) ], UnionTypeContext.new( is_array: true ) ) } end |