Sha256: 0c94ea20b7de9c84a7d7871f43afe152803168f10c2620a0e6491c0f12026a8f
Contents?: true
Size: 978 Bytes
Versions: 17
Compression:
Stored size: 978 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Shared class JobPostingStatus < ::StackOne::Utils::FieldAugmented extend T::Sig # The source value of the job postings status. field :source_value, T.nilable(::Object), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('source_value') } } # The status of the job postings. field :value, T.nilable(::StackOne::Shared::JobPostingSchemasStatusValue), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('value'), 'decoder': Utils.enum_from_string(::StackOne::Shared::JobPostingSchemasStatusValue, true) } } sig { params(source_value: T.nilable(::Object), value: T.nilable(::StackOne::Shared::JobPostingSchemasStatusValue)).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