Sha256: a39ba73030acd7f1b23f4d7a060d39f006a184a8c8f0d75c647c553388c7b76a
Contents?: true
Size: 1.03 KB
Versions: 10
Compression:
Stored size: 1.03 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Shared # The type of employment (e.g., contractor, permanent) class EmploymentType < ::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::CreateEmploymentApiModelSchemasValue), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('value'), 'decoder': Utils.enum_from_string(::StackOne::Shared::CreateEmploymentApiModelSchemasValue, true) } } sig { params(source_value: T.nilable(::Object), value: T.nilable(::StackOne::Shared::CreateEmploymentApiModelSchemasValue)).void } def initialize(source_value: nil, value: nil) @source_value = source_value @value = value end end end end
Version data entries
10 entries across 10 versions & 1 rubygems