Sha256: 0ef883c662a44d147cdb9f0788e727220bd0a038301eebe5c9127ce8ee4e073f
Contents?: true
Size: 930 Bytes
Versions: 23
Compression:
Stored size: 930 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Shared class AtsMoveApplicationRequestDto < ::StackOne::Utils::FieldAugmented extend T::Sig # Unique identifier of the application stage. field :interview_stage_id, T.nilable(::String), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('interview_stage_id') } } # Value to pass through to the provider field :passthrough, T.nilable(T::Hash[Symbol, ::Object]), { 'format_json': { 'letter_case': ::StackOne::Utils.field_name('passthrough') } } sig { params(interview_stage_id: T.nilable(::String), passthrough: T.nilable(T::Hash[Symbol, ::Object])).void } def initialize(interview_stage_id: nil, passthrough: nil) @interview_stage_id = interview_stage_id @passthrough = passthrough end end end end
Version data entries
23 entries across 23 versions & 1 rubygems