Sha256: e89cd665472aa47b1228b781a473b314b2c170d8c024642d6fcf1427d933230a
Contents?: true
Size: 1.03 KB
Versions: 23
Compression:
Stored size: 1.03 KB
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 EmployeeSchemasLocationType < ::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::EmployeeSchemasWorkLocationLocationTypeValue), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('value'), 'decoder': Utils.enum_from_string(::StackOne::Shared::EmployeeSchemasWorkLocationLocationTypeValue, true) } } sig { params(source_value: T.nilable(::Object), value: T.nilable(::StackOne::Shared::EmployeeSchemasWorkLocationLocationTypeValue)).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