Sha256: 5a62478a2a30b8ae30aaa9b418a470e50b1009ef8d880ddf606a3ae4201200bb
Contents?: true
Size: 988 Bytes
Versions: 23
Compression:
Stored size: 988 Bytes
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Shared # The location type class HRISLocationLocationType < ::StackOne::Utils::FieldAugmented extend T::Sig # The source value of the location type. field :source_value, T.nilable(::Object), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('source_value') } } # The type of the location. field :value, T.nilable(::StackOne::Shared::HRISLocationSchemasValue), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('value'), 'decoder': Utils.enum_from_string(::StackOne::Shared::HRISLocationSchemasValue, true) } } sig { params(source_value: T.nilable(::Object), value: T.nilable(::StackOne::Shared::HRISLocationSchemasValue)).void } def initialize(source_value: nil, value: nil) @source_value = source_value @value = value end end end end
Version data entries
23 entries across 23 versions & 1 rubygems