Sha256: 9a38a0a3eca550b7acf3ba6f09a0158337fdace86b563c416c0c58b8f3b7a4f1
Contents?: true
Size: 1.08 KB
Versions: 17
Compression:
Stored size: 1.08 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Shared # The employee employment type class HrisCreateEmployeeRequestDtoEmploymentType < ::StackOne::Utils::FieldAugmented extend T::Sig # The source value of the employment type. field :source_value, T.nilable(::Object), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('source_value') } } # The type of the employment. field :value, T.nilable(::StackOne::Shared::HrisCreateEmployeeRequestDtoSchemasEmploymentTypeValue), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('value'), 'decoder': Utils.enum_from_string(::StackOne::Shared::HrisCreateEmployeeRequestDtoSchemasEmploymentTypeValue, true) } } sig { params(source_value: T.nilable(::Object), value: T.nilable(::StackOne::Shared::HrisCreateEmployeeRequestDtoSchemasEmploymentTypeValue)).void } def initialize(source_value: nil, value: nil) @source_value = source_value @value = value end end end end
Version data entries
17 entries across 17 versions & 1 rubygems