Sha256: 6dc2281a2b7e68786e6c95b0e63cc1eb88c33677267c2868b872f65a4483a414
Contents?: true
Size: 927 Bytes
Versions: 27
Compression:
Stored size: 927 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Shared # The country code class HRISLocationCountry < ::StackOne::Utils::FieldAugmented extend T::Sig field :source_value, T.nilable(::Object), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('source_value') } } # The ISO3166-1 Alpha2 Code of the Country field :value, T.nilable(::StackOne::Shared::HRISLocationValue), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('value'), 'decoder': Utils.enum_from_string(::StackOne::Shared::HRISLocationValue, true) } } sig { params(source_value: T.nilable(::Object), value: T.nilable(::StackOne::Shared::HRISLocationValue)).void } def initialize(source_value: nil, value: nil) @source_value = source_value @value = value end end end end
Version data entries
27 entries across 27 versions & 1 rubygems